Cloud Setup

Paramus runs a hosted MCP server at cloud1.paramus.ai. It exposes the same tool catalog as the local tray app — no installation, no local dependencies. Authentication is via OAuth 2.0 or API key.


Quick Start

Claude (Pro/Team/Enterprise)

  1. Open Claude Settings > Integrations > Add custom integration
  2. Enter the MCP server URL:
https://cloud1.paramus.ai/mcp
Add integration in Claude
  1. Claude triggers the OAuth flow. Enter your API key and click Connect:
OAuth login page
  1. Tools are now available. Ask naturally:
Claude using Paramus tools

ChatGPT Desktop

  1. Open Settings > Developer Mode > New MCP Server
  2. Enter the server URL: https://cloud1.paramus.ai/mcp
  3. Authenticate with your API key when prompted

OpenClaw

Set your API token and install the skill:

openclaw config set PARAMUS_API_TOKEN "paramus_live_XXX-XXX-XXX_your_token_here"
openclaw skill install paramus-chemistry

Get the token from your credentials card:

Credentials card with API token

Run an agent:

openclaw agent --agent main --message "What is the molecular weight of aspirin?"

The agent auto-detects: if a local Paramus server runs on port 8765, it uses local mode (no token needed). Otherwise it authenticates against cloud1.paramus.ai.

VS Code (Copilot) — Cloud Connection

This connects VS Code to the cloud server. For local use (no account needed, full tool catalog), install Paramus Intent MCP and see MCP Server Setup.

Add .vscode/mcp.json to your workspace:

{
  "servers": {
    "paramus-chemistry": {
      "type": "http",
      "url": "https://cloud1.paramus.ai/mcp"
    }
  }
}

VS Code will prompt for OAuth authentication on first connection.

Troubleshooting

ProblemSolution
OAuth page does not openCheck browser popup blocker. Try the URL directly: https://cloud1.paramus.ai/oauth/authorize
“Invalid API key”Keys have format XXX-XXX-XXX. Get a new one from the credentials card
Tools not showingCheck https://cloud1.paramus.ai/health returns OK
Token expiredReconnect — OAuth tokens refresh automatically on supported clients
Want to use local insteadInstall Paramus Intent MCP, start the tray app, point config to http://localhost:8765/mcp

Details

Cloud vs Local

CloudLocal
URLhttps://cloud1.paramus.ai/mcphttp://localhost:8765/mcp
AuthOAuth 2.0 / API keyNone
Tools337 cloud toolsFull catalog including HPC
DataSent to Paramus serversStays on your machine
InstallNoneParamus Intent MCP installer
BRAIN/WORLDVia networkVia network
OfflineNoLocal tools work offline

Authentication

The cloud server supports two auth methods:

OAuth 2.0 with PKCE (Claude, VS Code)

  • Authorization Code flow with S256 challenge
  • Dynamic Client Registration (RFC 7591)
  • Discovery: https://cloud1.paramus.ai/.well-known/oauth-authorization-server
  • No client secret needed (public client)

API Key (OpenClaw, programmatic access)

  • Format: paramus_live_XXX-XXX-XXX_...
  • Passed as Bearer token in Authorization header
  • Get from credentials card after account creation

Endpoints

EndpointPurpose
/mcpMCP Streamable HTTP (POST=JSON-RPC, GET=SSE)
/oauth/authorizeOAuth login page
/oauth/tokenToken exchange
/oauth/registerDynamic client registration
/.well-known/oauth-authorization-serverOAuth discovery
/healthHealth check (no auth)

Tiers

FreePro
Tool calls50/day500/day
Price$0$5/month
PaymentStripe

Account Creation

  1. Go to cloud1.paramus.ai
  2. Sign up with Google (via Clerk) or email
  3. Copy your API key from the credentials card
  4. Connect your AI client (see Quick Start)

Frequently Asked Questions

Do I need to install anything?

No. The cloud server runs hosted. Just connect your AI client and authenticate.

Can I switch between cloud and local?

Yes. If you install Paramus Intent MCP locally, point your config to `localhost:8765` instead. OpenClaw auto-detects: local server takes priority when running.

What data is sent to the cloud?

Tool call parameters (SMILES strings, property names, settings) are sent to the server for computation. Results are returned to your AI client. No conversation history is stored.

Is BRAIN available on cloud?

BRAIN and WORLD tools are available when their backend servers are reachable from the cloud host. Some HPC-heavy tools are local-only.

Scroll to Top