Pulse Intelligence

Other MCP clients

Connect any MCP-capable client to the Pulse MCP server

Any client that supports remote MCP servers over HTTP with OAuth can connect to Pulse — the guides for Claude, ChatGPT, and Grok are just the clients we've written up in detail. For everything else, the recipe is the same:

  1. Find where your client adds a remote or custom MCP server (often under Settings → Connectors, Integrations, or MCP)
  2. Add a server with:
FieldValue
NamePulse Intelligence
URLhttps://mcp.pulseintelligence.com/mcp
TransportStreamable HTTP
AuthenticationOAuth
  1. When prompted, sign in with your Pulse Intelligence credentials and click Authorize

Claude Code

Add the server from a terminal:

claude mcp add --transport http pulse https://mcp.pulseintelligence.com/mcp

Then run /mcp inside Claude Code to complete the OAuth sign-in.

JSON-config clients

Clients configured with a JSON file (Cursor, VS Code, and others) generally accept an entry like:

{
  "mcpServers": {
    "pulse": {
      "type": "http",
      "url": "https://mcp.pulseintelligence.com/mcp"
    }
  }
}

The exact key names vary by client — check its MCP documentation.

Requirements

Whatever the client, you need a Pulse Intelligence account with OAuth access enabled. The server uses OAuth 2.1 with PKCE and dynamic client registration; your credentials are never shared with the client — only a scoped access token is exchanged. All access is read-only.

If your client can't complete the OAuth flow or you need help, contact your Pulse admin.

On this page