MCP Catalogs
Home

mcp-server

by paperinvest·21·Score 40

Official MCP server for Paper's trading platform enabling AI assistants to interact with trading APIs.

financedeveloper-toolsai-llm
4
Forks
0
Open issues
8 mo ago
Last commit
2d ago
Indexed

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:

you:AI assistants helping traders analyze market data and execute paper trades
you:Portfolio management through conversational interfaces with AI
you:Automated trading strategy testing in a risk-free paper trading environment

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 README
  • paper.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

ibkr-mcpalpaca-mcptradingview-mcp

Installation

Installation

# Global install (recommended for CLI usage)
npm i -g @paperinvest/mcp-server

# Or run with npx
npx @paperinvest/mcp-server --help

Node.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.io

Claude 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

GitHub →

Last updated · Auto-generated from public README + GitHub signals.