MCP Client Setup
Configuration guide for connecting MCP clients to PlusE.
MCP Client Setup
PlusE uses HTTP Streamable MCP. Connect your AI client or try the Playground.
Server Endpoint
https://mcp.plusefin.com/mcp/?apikey=YOUR_API_KEY
Quick Start: Playground
Try PlusE instantly without setup: chat.findata-be.uk
The playground provides a web interface to test all tools with natural language queries.
Client Configuration
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"
}
}
}
3. Verify
gemini-cli
# Check available tools list
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
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
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
}
}
}
3. Verify
opencode mcp list
# Should show plusefin with available tools
Bridge Mode (mcp-remote)
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
This creates a local stdio bridge.
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 |
| Rate limited | Check console for plan limits |
Security
- Store API keys in env vars:
${PLUS_EFIN_API_KEY} - Add config files to
.gitignore - Rotate keys regularly
Next: Browse available tools or try the Playground