Paper MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| PAPER_INVEST_API_KEY | Yes | Your Paper Invest API key generated from your account settings |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Server capabilities have not been inspected yet.
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| get_accountC | Get account details by ID |
| update_accountC | Update account details |
| freeze_accountC | Freeze a trading account |
| create_portfolioC | Create a new portfolio |
| get_portfolioC | Get portfolio details |
| get_account_portfoliosC | Get all portfolios for an account |
| reset_portfolioC | Reset portfolio to initial state |
| get_portfolio_equitiesC | Get all equity positions in a portfolio |
| get_portfolio_optionsC | Get all option positions in a portfolio |
| create_orderC | Create a new trading order |
| create_batch_ordersC | Create multiple orders at once |
| get_orderC | Get order details by ID |
| cancel_orderC | Cancel an existing order |
| get_account_ordersC | Get orders for an account |
| cancel_all_account_ordersC | Cancel all orders for an account |
| get_today_filled_ordersC | Get all orders filled today |
| get_quoteC | Get real-time quote for a symbol |
| get_batch_quotesC | Get real-time quotes for multiple symbols |
| get_market_hoursC | Get market hours for an exchange |
| is_market_openC | Check if market is open for a symbol |
| get_portfolio_activitiesC | Get activity log for a portfolio |
| get_day_tradesC | Get day trade activity for a portfolio |
| upgrade_to_marginC | Upgrade portfolio to margin account |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 23 tools
Most tools have distinct purposes targeting specific resources like accounts, orders, portfolios, or market data, with clear action verbs. However, some potential overlap exists between 'get_account_orders' and 'get_today_filled_orders', as well as between portfolio-related 'get' tools, which could cause minor confusion in selection.
Tool names follow a highly consistent verb_noun pattern throughout, using snake_case uniformly. Verbs like 'get', 'create', 'cancel', and 'update' are applied predictably to nouns such as 'account', 'order', 'portfolio', and 'quote', making the set easy to navigate and understand.
With 23 tools, the count is borderline high for a trading server, potentially feeling heavy but still manageable. It covers a broad scope including accounts, orders, portfolios, and market data, which justifies many tools, but it might benefit from consolidation or more focused scoping to avoid complexity.
The tool set provides comprehensive coverage for trading operations, including full CRUD for accounts, orders, and portfolios, along with market data queries and specialized actions like freezing accounts or upgrading to margin. No obvious gaps are present; agents can handle end-to-end workflows without dead ends.