mcp-server
by paperinvest·★ 21·Score 40
Official MCP server for Paper's trading platform enabling AI assistants to interact with trading APIs.
Overview
This is the official MCP server for Paper's trading platform, designed to integrate AI coding assistants with Paper's trading API. It provides tools for fetching real-time quotes, placing paper orders, and inspecting portfolios. The server is well-documented with clear installation instructions and configuration examples for popular IDEs like Cursor and Claude Desktop.
Try asking AI
After installing, here are 3 things you can ask your AI assistant:
When to choose this
Choose this server if you're using Paper's trading platform and want to integrate AI assistants with its API for simulated trading activities.
When NOT to choose this
Don't choose this if you need live trading capabilities, as it's designed specifically for paper trading only.
Tools this server exposes
4 tools extracted from the READMEpaper.quotepaper.quote(symbol)Get real-time NBBO quote for a symbol
paper.quotesBatchpaper.quotesBatch(symbols[])Get quotes for multiple symbols in one request
paper.orderpaper.order({ ... })Place a simulated order (market/limit/stop, etc.)
paper.portfoliopaper.portfolio(id)Retrieve portfolio positions and P&L
Comparable tools
Installation
Installation
# Global install (recommended for CLI usage)
npm i -g @paperinvest/mcp-server
# Or run with npx
npx @paperinvest/mcp-server --helpNode.js 16+ recommended.
Configuration
Set your Paper API credentials via environment variables (shell or .env).
export PAPER_API_KEY=your_api_key
# Optional override
export PAPER_API_BASE_URL=https://api.paperinvest.ioClaude Desktop Configuration
Add the following to your Claude Desktop config file:
{
"mcpServers": {
"paper": {
"command": "paper-mcp-server",
"env": {
"PAPER_API_KEY": "your_api_key"
}
}
}
}Compare mcp-server with
Last updated · Auto-generated from public README + GitHub signals.