MCP Setup

Configure your AI client to use PlusE MCP server.

PlusE uses HTTP Streamable MCP. Connect your AI client or try the Playground.

Server Endpoint

https://mcp.plusefin.com/mcp/?apikey=YOUR_API_KEY

Try Without Setup

Use the Playground to test PlusE with natural language—no configuration required.

Client Configuration

Claude Desktop

  1. Install - claude.ai/download

  2. Configure

    • Settings → Connectors → Add Connector
    • Type: Remote MCP Server
    • Transport: HTTP Streamable
    • URL: https://mcp.plusefin.com/mcp/?apikey=YOUR_API_KEY

Requires Pro/Max/Team/Enterprise plan

Gemini CLI

  1. Install

    npm install -g @google/gemini-cli
    
  2. Configure (~/.gemini/settings.json)

    {
      "mcpServers": {
        "plusefin": {
          "httpUrl": "https://mcp.plusefin.com/mcp/?apikey=YOUR_API_KEY"
        }
      }
    }
    

Cherry Studio

  1. Install - cherry-studio.com

  2. Configure

    • Settings → MCP Servers → Add Server
    • Name: PlusE
    • URL: https://mcp.plusefin.com/mcp/?apikey=YOUR_API_KEY

OpenCode

  1. Install - opencode.ai

  2. Configure (~/.config/opencode/config.json)

    {
      "$schema": "https://opencode.ai/config.json",
      "mcp": {
        "plusefin": {
          "type": "remote",
          "url": "https://mcp.plusefin.com/mcp?apikey=YOUR_API_KEY",
          "enabled": true
        }
      }
    }
    

Qwen (llama.cpp)

  1. Install

    git clone https://github.com/ggerganov/llama.cpp
    cd llama.cpp && make
    
  2. Config (config.json)

    {
      "mcpServers": {
        "plusefin": {
          "httpUrl": "https://mcp.plusefin.com/mcp/?apikey=YOUR_API_KEY"
        }
      }
    }
    
  3. Run

    ./llama-server --mcp-config config.json -hf unsloth/Qwen3-30B-A3B-GGUF:Q4_K_M
    

Bridge Mode

For clients without native HTTP Streamable support:

npm install -g mcp-remote
npx mcp-remote https://mcp.plusefin.com/mcp/?apikey=YOUR_API_KEY --transport http-only

Testing

Try these queries after setup:

  • "What's Apple's P/E ratio?"
  • "Show me SPY's sector allocation"
  • "Calculate position size for $10k risk on TSLA"

Troubleshooting

Issue Solution
Tools not appearing Use httpUrl not url
Auth error Check API key and account status
Timeout Verify network to mcp.plusefin.com

Security

  • Store API keys in environment variables
  • Add config files to .gitignore
  • Rotate keys regularly