Skip to main content

MCP server

Prosper planEnterprise plan

Connect your AI to ProsperStack

The ProsperStack MCP server lets AI tools like Claude and ChatGPT connect to your ProsperStack data through the Model Context Protocol (MCP). Your AI tool can then search and read your data with the same access as your dashboard login.

Claude

Free, Pro and Max plans

  1. Go to Customize > Connectors in Claude.

  2. Click +, then Add custom connector.

  3. Enter the URL and click Add:

    https://mcp.prosperstack.com/v1
  4. Find the ProsperStack connector in the list and click Connect.

  5. Sign in to ProsperStack.

Team and Enterprise plans

On Team and Enterprise plans, an Owner adds the connector once and each member then connects individually.

For Owners:

  1. Go to Organization settings > Connectors.

  2. Click Add, then choose Custom > Web.

  3. Enter the URL and click Add:

    https://mcp.prosperstack.com/v1

For members:

  1. Go to Customize > Connectors.

  2. Find the ProsperStack connector and click Connect.

  3. Sign in to ProsperStack.

Claude Code

Run this command in your terminal:

claude mcp add --transport http prosperstack https://mcp.prosperstack.com/v1

Then run /mcp in Claude Code and follow the sign-in flow.

ChatGPT

Custom MCP connectors require ChatGPT developer mode and are available on Plus, Pro, Business, Enterprise and Edu plans.

  1. Go to Settings > Apps & Connectors > Advanced settings and turn on Developer mode.

  2. Go back to Settings > Apps & Connectors and click Create.

  3. Enter a name and the MCP server URL:

    https://mcp.prosperstack.com/v1
  4. Set the authentication mode to OAuth, then click Create.

  5. Sign in to ProsperStack.

Cursor

  1. Open Cursor SettingsMCP & IntegrationsAdd custom MCP.

  2. Paste the following configuration:

    {
    "mcpServers": {
    "prosperstack": {
    "url": "https://mcp.prosperstack.com/v1"
    }
    }
    }
  3. Save and restart Cursor. The first time you use a ProsperStack tool, sign in to ProsperStack.

VS Code (GitHub Copilot)

  1. Create a .vscode/mcp.json file in your workspace:

    {
    "servers": {
    "prosperstack": {
    "type": "http",
    "url": "https://mcp.prosperstack.com/v1"
    }
    }
    }
  2. Open the command palette (Cmd+Shift+P / Ctrl+Shift+P) and run MCP: List Servers.

  3. Start the ProsperStack server and sign in.

Codex

  1. Add the ProsperStack server to ~/.codex/config.toml:

    [mcp_servers.prosperstack]
    url = "https://mcp.prosperstack.com/v1"
  2. Sign in by running:

    codex mcp login prosperstack

Zed

Add the server to your Zed settings.json:

{
"context_servers": {
"prosperstack": {
"source": "custom",
"url": "https://mcp.prosperstack.com/v1"
}
}
}

The first time you use a ProsperStack tool, sign in to ProsperStack.

Windsurf

  1. Open Windsurf Settings and search for MCP.

  2. Click View raw config to open mcp_config.json.

  3. Add the ProsperStack server configuration:

    {
    "mcpServers": {
    "prosperstack": {
    "serverUrl": "https://mcp.prosperstack.com/v1"
    }
    }
    }
  4. Save and restart Windsurf, then sign in to ProsperStack.

Other tools

The ProsperStack MCP server is a remote MCP server at https://mcp.prosperstack.com/v1. Most AI tools that support MCP let you connect to a remote server by entering its URL.

Reach out to support@prosperstack.com if you need help connecting your AI tool.

Multi-account users

If you have access to multiple ProsperStack accounts, the assistant will ask which account to use (live or test) before making other calls.