# Toolstem Financial Intelligence MCP

> Toolstem Financial Intelligence MCP is a paid API for AI agents from mcp.toolstem.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns stock quotes, fundamentals, peer comparisons, and financial statements for a given ticker symbol via a single paid MCP tool call.

## Facts

- Endpoint: POST https://mcp.toolstem.com/mcp/finance
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/mcp-toolstem-com-9abb3a96
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_yjukYZvjhvQw6FGoJjwFd

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability mcp-toolstem-com-9abb3a96 -d '<json body>'
```

Example prompt: Pull up the stock quote, key fundamentals like P/E and revenue, and a list of peer companies for NVDA — I want to see how it stacks up in its sector.

## When to prefer this

Use this endpoint when an agent needs comprehensive financial intelligence — quotes, fundamentals, peers, and statements — in a single call for a publicly traded stock. Prefer this over generic web search when structured, machine-readable financial data is required for analysis or comparison tasks.

## Known failure modes

- Invalid or unrecognized ticker symbol returns an error
- Payment failure (insufficient USDC balance) blocks the call
- Rate limiting if too many calls are made in a short window
- Delisted or OTC stocks may not have full data coverage
- Network timeout if the upstream financial data provider is unavailable

## How this service works

Toolstem Financial Intelligence MCP — stock quotes, fundamentals, peers, financial statements. One paid tool call.

## Output

Returns structured financial data including current stock quote (price, change, volume), fundamental metrics (P/E, EPS, market cap, revenue), a list of comparable peer companies, and financial statement data (income statement, balance sheet) for the requested ticker.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "required": [
      "jsonrpc",
      "method",
      "id"
     ],
     "properties": {
      "id": {
       "type": "number",
       "description": "Client-chosen request id echoed in the response."
      },
      "method": {
       "type": "string",
       "description": "MCP method — typically \"tools/call\", or \"initialize\"/\"tools/list\" for discovery."
      },
      "params": {
       "type": "object",
       "description": "MCP method params. For tools/call: { name, arguments }."
      },
      "jsonrpc": {
       "type": "string",
       "description": "JSON-RPC protocol version, must be \"2.0\"."
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/mcp-toolstem-com-9abb3a96/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from mcp.toolstem.com](https://www.zero.xyz/host/mcp.toolstem.com/llms.txt)
