Developer Docs

Portfolio Intel Docs

Claude Desktop / claude.ai

  1. Open Claude Desktop and select Customize in the sidebar.
  2. Open Connectors and choose + Add custom connector.
  3. Enter https://api.portfoliointel.co.in/mcp as the remote MCP server URL.
  4. Leave advanced settings empty.
  5. Connect and complete the consent screen with your Portfolio Intel API key.

This path uses OAuth discovery and the consent page rather than a static header in local config.

Claude Code CLI

claude mcp add --transport http portfolio-intel \
  https://api.portfoliointel.co.in/mcp \
  --header "Authorization: Bearer sk_live_YOUR_KEY"

Cursor IDE

{
  "mcpServers": {
    "portfolio-intel": {
      "url": "https://api.portfoliointel.co.in/mcp",
      "headers": {
        "Authorization": "Bearer sk_live_YOUR_KEY"
      }
    }
  }
}

VS Code + Copilot

Command palette → MCP: Open User Configuration and add:

{
  "servers": {
    "portfolio-intel": {
      "type": "http",
      "url": "https://api.portfoliointel.co.in/mcp",
      "headers": {
        "Authorization": "Bearer sk_live_YOUR_KEY"
      }
    }
  }
}

ChatGPT Actions

  1. Create a GPT and open the Configure tab.
  2. Add an action from URL using https://api.portfoliointel.co.in/openapi.yaml.
  3. Use OAuth 2.0 authentication.
  4. On first use, the user completes the consent flow.

Practical guidance