Install
$ agentstack add mcp-prereason-mcp ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.7.1 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ● Filesystem access Used
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.7.1. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
@prereason/mcp
[](https://www.npmjs.com/package/@prereason/mcp) [](https://www.npmjs.com/package/@prereason/mcp) [](https://nodejs.org) [](https://opensource.org/licenses/MIT) [](https://glama.ai/mcp/servers/PreReason/mcp)
MCP server for PreReason - the Context API for financial agents.
Give your agent market context, not raw price feeds. 17 briefings covering BTC, macro, cross-asset regimes, and liquidity - each with trend signals, confidence scores, and causal narratives.
Quick Start
Option 1: One-Click Connect (Claude.ai, ChatGPT, Cursor, Codex, Windsurf, VS Code Copilot)
Clients that support MCP OAuth can connect with no API key setup required. Add the server URL and the client handles the rest - you'll be prompted to sign in or create a free account, and your API key is provisioned automatically.
{
"mcpServers": {
"prereason": {
"type": "http",
"url": "https://api.prereason.com/api/mcp"
}
}
}
No Authorization header needed - OAuth handles it.
Option 2: Direct HTTP with API Key (Claude Code, scripts, cron jobs)
For CLI tools or when you want to use an existing API key:
# Claude Code (CLI one-liner)
claude mcp add prereason --transport http https://api.prereason.com/api/mcp
Or with an explicit key in your MCP config:
{
"mcpServers": {
"prereason": {
"type": "http",
"url": "https://api.prereason.com/api/mcp",
"headers": {
"Authorization": "Bearer YOUR_API_KEY"
}
}
}
}
Option 3: stdio bridge (Claude Desktop and other stdio-only clients)
Requires Node.js 18+
Add to your MCP client config (e.g. claude_desktop_config.json):
{
"mcpServers": {
"prereason": {
"command": "npx",
"args": ["-y", "@prereason/mcp"],
"env": {
"PREREASON_API_KEY": "YOUR_API_KEY"
}
}
}
}
Claude Desktop config file location:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
Restart your MCP client after editing the config. PreReason should appear with 5 tools.
Get an API Key
- Sign up at prereason.com/signup
- Go to Dashboard > Settings > API Keys
- Copy your key (starts with
pr_live_)
5 MCP Tools
| Tool | Auth | Description | |------|------|-------------| | list_briefings | Open | List all 17 pre-reasoned market briefings with tier requirements | | list_metrics | Open | List all 30 available metrics across bitcoin, macro, and calculated categories | | get_health | Open | API health check, version, account tier | | get_context | Required | Fetch a pre-reasoned market briefing (markdown or JSON) | | get_metric | Required | Fetch a single metric with trend/signal/percentile |
17 Market Briefings
Free (6 briefings)
| Briefing | Description | |----------|-------------| | btc.quick-check | Minimal fast context: BTC + Net Liquidity + correlation | | btc.context | BTC + liquidity + hash ribbon + difficulty + momentum | | macro.snapshot | Fed balance, M2, treasury yields, VIX, net liquidity | | cross.correlations | BTC correlation matrix vs macro indicators | | btc.pulse | Volume, fees, mempool analysis | | btc.grid-stress | Epoch pace and difficulty adjustment forecast |
Basic - $19.99/mo (5 briefings)
| Briefing | Description | |----------|-------------| | btc.momentum | 200D MA support/resistance with 7d/30d/90d momentum and YTD percentiles | | macro.liquidity | Liquidity indicators with momentum analysis | | btc.on-chain | Hash rate, difficulty, fees, mempool health | | cross.breadth | Cross-asset breadth with SPY, DXY, VIX | | btc.miner-survival | Hashprice thermometer with miner stress scoring |
Pro - $49.99/mo (6 briefings)
| Briefing | Description | |----------|-------------| | btc.full | Complete market intelligence with all metrics and analysis | | btc.factors | Multi-factor attribution for BTC price movements | | cross.regime | Regime classification (risk-on/risk-off/transition) with USDT.D risk sentiment | | fx.liquidity | FX environment with DXY, treasury, and global liquidity | | btc.energy | Production cost model with gas input pressure | | btc.treasury | Corporate Bitcoin treasury intelligence from SEC filings |
Example Prompts
Once connected, try prompts like:
- "What's the current BTC regime?"
- "Show me the macro snapshot"
- "What does the full context briefing say about market conditions?"
- "Get the bitcoin price metric with trend analysis"
- "What's the hash ribbon signal right now?"
- "List available briefings"
Troubleshooting
"Server disconnected" error
- Ensure Node.js 18+ is installed:
node --version - Check your API key starts with
pr_live_ - Fully quit Claude Desktop (system tray > Quit) and reopen
Tools not appearing
- Restart Claude Desktop after editing config
- Verify JSON syntax:
node -e "JSON.parse(require('fs').readFileSync('path/to/config','utf8'))"
Windows: "'C:\Program' is not recognized"
If you still see this error, ensure you're using the env block (not --header args) as shown in Quick Start above. If the issue persists, install globally and use node:
- Run:
npm install -g @prereason/mcp - Use this config (replace
YOUR_USERwith your Windows username):
{
"mcpServers": {
"prereason": {
"command": "node",
"args": [
"C:\\Users\\YOUR_USER\\AppData\\Roaming\\npm\\node_modules\\@prereason\\mcp\\bin\\cli.js"
],
"env": {
"PREREASON_API_KEY": "YOUR_API_KEY"
}
}
}
}
Auth errors on getcontext / getmetric
list_briefings,list_metrics, andget_healthwork without a keyget_contextandget_metricrequire a valid API key- Get a free key at prereason.com/signup
Other MCP Clients
If your client supports remote HTTP servers, use [Quick Start Option 1](#option-1-direct-http-claude-code-cursor-windsurf-etc) above. The stdio bridge package is only needed for clients that require stdio transport (e.g. Claude Desktop).
CLI Usage
# Using environment variable (recommended)
PREREASON_API_KEY=pr_live_... npx @prereason/mcp
# Using --header flag (backward compatible)
npx @prereason/mcp --header "Authorization:Bearer YOUR_API_KEY"
# Custom URL
PREREASON_URL=https://custom.endpoint/mcp npx @prereason/mcp
# Help
npx @prereason/mcp --help
Links
Privacy Policy
See prereason.com/privacy for data handling practices.
License
MIT
Source & license
This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: PreReason
- Source: PreReason/mcp
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.7.1 Imported from the upstream source.