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
-
Install - claude.ai/download
-
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
-
Install
npm install -g @google/gemini-cli -
Configure (
~/.gemini/settings.json){ "mcpServers": { "plusefin": { "httpUrl": "https://mcp.plusefin.com/mcp/?apikey=YOUR_API_KEY" } } }
Cherry Studio
-
Install - cherry-studio.com
-
Configure
- Settings → MCP Servers → Add Server
- Name:
PlusE - URL:
https://mcp.plusefin.com/mcp/?apikey=YOUR_API_KEY
OpenCode
-
Install - opencode.ai
-
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)
-
Install
git clone https://github.com/ggerganov/llama.cpp cd llama.cpp && make -
Config (
config.json){ "mcpServers": { "plusefin": { "httpUrl": "https://mcp.plusefin.com/mcp/?apikey=YOUR_API_KEY" } } } -
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