veroq-mcp 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +104 -0
- package/dist/server.d.ts +2 -0
- package/dist/server.js +1538 -0
- package/package.json +40 -0
package/README.md
ADDED
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
# veroq-mcp
|
|
2
|
+
|
|
3
|
+
MCP server for [VEROQ](https://veroq.ai) — verified financial intelligence for AI agents.
|
|
4
|
+
|
|
5
|
+
## Install
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install -g veroq-mcp
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Get an API Key
|
|
12
|
+
|
|
13
|
+
Sign up and grab your key at [veroq.ai/settings](https://veroq.ai/settings).
|
|
14
|
+
|
|
15
|
+
## Claude Desktop
|
|
16
|
+
|
|
17
|
+
Add to `~/Library/Application Support/Claude/claude_desktop_config.json` (macOS) or `%APPDATA%\Claude\claude_desktop_config.json` (Windows):
|
|
18
|
+
|
|
19
|
+
```json
|
|
20
|
+
{
|
|
21
|
+
"mcpServers": {
|
|
22
|
+
"veroq": {
|
|
23
|
+
"command": "veroq-mcp",
|
|
24
|
+
"env": {
|
|
25
|
+
"VEROQ_API_KEY": "your-api-key"
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
## Cursor
|
|
33
|
+
|
|
34
|
+
Open **Settings > MCP Servers > Add Server**:
|
|
35
|
+
|
|
36
|
+
- **Name**: veroq
|
|
37
|
+
- **Command**: `veroq-mcp`
|
|
38
|
+
- **Environment**: `VEROQ_API_KEY=your-api-key`
|
|
39
|
+
|
|
40
|
+
## Tools
|
|
41
|
+
|
|
42
|
+
| Tool | Description | Key Params |
|
|
43
|
+
|------|-------------|------------|
|
|
44
|
+
| `veroq_search` | Search verified intelligence briefs | `query`, `category`, `depth`, `limit` |
|
|
45
|
+
| `veroq_feed` | Latest briefs feed | `category`, `limit`, `include_sources` |
|
|
46
|
+
| `veroq_brief` | Full brief by ID | `brief_id` |
|
|
47
|
+
| `veroq_extract` | Extract article content from URLs | `urls` (comma-separated) |
|
|
48
|
+
| `veroq_entities` | Briefs mentioning an entity | `name` |
|
|
49
|
+
| `veroq_trending` | Trending entities | `limit` |
|
|
50
|
+
| `veroq_compare` | Cross-source bias comparison | `topic` |
|
|
51
|
+
| `veroq_research` | Deep research report | `query`, `category`, `max_sources` |
|
|
52
|
+
| `veroq_verify` | Fact-check a claim against brief corpus | `claim`, `context` |
|
|
53
|
+
| `veroq_timeline` | Story evolution timeline | `brief_id` |
|
|
54
|
+
| `veroq_forecast` | Topic forecasts | `topic`, `depth` |
|
|
55
|
+
| `veroq_contradictions` | Find contradictions across intelligence | `severity` |
|
|
56
|
+
| `veroq_events` | Notable events from briefs | `type`, `subject` |
|
|
57
|
+
| `veroq_diff` | Brief version diffs | `brief_id`, `since` |
|
|
58
|
+
| `veroq_web_search` | Web search with trust scoring | `query`, `limit` |
|
|
59
|
+
| `veroq_crawl` | Extract content from URLs | `url`, `depth` |
|
|
60
|
+
| `veroq_ticker_price` | Live market price | `symbol` |
|
|
61
|
+
| `veroq_ticker_score` | Composite trading signal | `symbol` |
|
|
62
|
+
| `veroq_portfolio_feed` | Portfolio-aware news | `holdings` |
|
|
63
|
+
| `veroq_sectors` | Sector sentiment overview | `days` |
|
|
64
|
+
| `veroq_candles` | OHLCV candlestick data | `symbol`, `interval`, `range` |
|
|
65
|
+
| `veroq_technicals` | Technical indicators | `symbol`, `range` |
|
|
66
|
+
| `veroq_earnings` | Earnings data | `symbol` |
|
|
67
|
+
| `veroq_market_movers` | Top gainers/losers/active | |
|
|
68
|
+
| `veroq_market_summary` | Major market indices | |
|
|
69
|
+
| `veroq_economy` | Macroeconomic indicators | `indicator`, `limit` |
|
|
70
|
+
| `veroq_forex` | Foreign exchange rates | `pair` |
|
|
71
|
+
| `veroq_commodities` | Commodity prices | `symbol` |
|
|
72
|
+
| `veroq_crypto` | Cryptocurrency data | `symbol` |
|
|
73
|
+
| `veroq_crypto_chart` | Crypto price chart | `symbol`, `days` |
|
|
74
|
+
| `veroq_defi` | DeFi TVL and protocols | `protocol` |
|
|
75
|
+
| `veroq_screener` | Multi-criteria stock screener | filters |
|
|
76
|
+
| `veroq_screener_presets` | Pre-built screening strategies | `preset_id` |
|
|
77
|
+
| `veroq_alerts` | Price/sentiment alerts | `action`, `ticker` |
|
|
78
|
+
| `veroq_social_sentiment` | Social media sentiment | `symbol` |
|
|
79
|
+
| `veroq_social_trending` | Social media trending | |
|
|
80
|
+
| `veroq_ipo_calendar` | IPO calendar | `days`, `limit` |
|
|
81
|
+
| `veroq_ticker_news` | Ticker-specific news | `symbol`, `limit` |
|
|
82
|
+
| `veroq_ticker_analysis` | Comprehensive ticker analysis | `symbol` |
|
|
83
|
+
| `veroq_search_suggest` | Search autocomplete | `query` |
|
|
84
|
+
| `veroq_defi_protocol` | DeFi protocol details | `protocol` |
|
|
85
|
+
| `veroq_economy_indicator` | Specific economic indicator | `indicator` |
|
|
86
|
+
| `veroq_generate_report` | AI research reports | `ticker`, `tier` |
|
|
87
|
+
| `veroq_get_report` | Retrieve generated reports | `report_id` |
|
|
88
|
+
| `veroq_ask` | Natural language financial queries | `question` |
|
|
89
|
+
| `veroq_full` | Full ticker profile | `ticker` |
|
|
90
|
+
| `veroq_insider` | Insider trading activity | `ticker` |
|
|
91
|
+
| `veroq_filings` | SEC filings | `ticker` |
|
|
92
|
+
| `veroq_analysts` | Analyst ratings and targets | `ticker` |
|
|
93
|
+
| `veroq_congress` | Congressional trades | `symbol` |
|
|
94
|
+
| `veroq_institutions` | Institutional ownership | `ticker` |
|
|
95
|
+
| `veroq_run_agent` | Run AI agents | `slug`, `inputs` |
|
|
96
|
+
|
|
97
|
+
## Environment Variables
|
|
98
|
+
|
|
99
|
+
| Variable | Required | Description |
|
|
100
|
+
|----------|----------|-------------|
|
|
101
|
+
| `VEROQ_API_KEY` | Yes | Your VEROQ API key |
|
|
102
|
+
| `VEROQ_BASE_URL` | No | API base URL (default: `https://api.thepolarisreport.com`) |
|
|
103
|
+
|
|
104
|
+
Note: `POLARIS_API_KEY` and `POLARIS_BASE_URL` are also accepted for backward compatibility.
|
package/dist/server.d.ts
ADDED