npm praesentire-mcpstdioMITupdated 2mo ago
MCP server for Praesentire — bilingual financial news sentiment as a Claude tool.
praesentire mcp で何ができる?
praesentire-mcp
MCP server for Praesentire — bilingual financial news sentiment as a Claude tool.
What Claude gets
Three tools, one API:
| Tool | What it does |
|---|---|
get_sentiment |
Aggregated -1 to +1 sentiment score + confidence + bull/bear distribution + latest 3 articles with rationale, for one ticker. |
get_sentiment_batch |
Same aggregates for up to 50 tickers in one call. Each ticker bills as one request. |
compare_languages |
English vs Traditional Chinese sentiment side-by-side + divergence score. Designed for cross-market arbitrage signals. |
Sources: Reuters, Bloomberg, Yahoo Finance, CNBC (English) + 經濟日報, 工商時報, Anue 鉅亨 (繁中). Updated every 10 minutes.
Install
You need a Praesentire API key. Sign up free — 100 req/day forever, no credit card.
Claude Code
Add to .mcp.json in your project root:
{
"mcpServers": {
"praesentire": {
"command": "npx",
"args": ["-y", "praesentire-mcp"],
"env": {
"PRAESENTIRE_API_KEY": "pr_your_key_here"
}
}
}
}
Then claude and ask: "What's the sentiment on NVDA?"
Claude Desktop / Cowork
Edit your Claude Desktop config (%APPDATA%\Claude\claude_desktop_config.json on Windows, ~/Library/Application Support/Claude/claude_desktop_config.json on Mac):
{
"mcpServers": {
"praesentire": {
"command": "npx",
"args": ["-y", "praesentire-mcp"],
"env": {
"PRAESENTIRE_API_KEY": "pr_your_key_here"
}
}
}
}
Restart Claude Desktop. The three tools will appear in the connectors list.
Local test
PRAESENTIRE_API_KEY=pr_your_key npx praesentire-mcp
# Server starts on stdio. Press Ctrl+C to stop.
Example prompts
Once installed, Claude can answer things like:
"What's the news sentiment on NVDA right now?" → Calls
get_sentiment("NVDA"), returns aggregated score + the 3 articles driving it.
"Compare English vs Chinese sentiment on TSMC — is there divergence?" → Calls
compare_languages("TSM"), returns side-by-side plus divergence score. If|divergence| > 0.3, that's a notable cross-market signal.
"Sentiment on my watchlist: NVDA, AMD, AVGO, TSM, ASML, INTC, MU." → Calls
get_sentiment_batch(["NVDA","AMD",...]), returns all at once.
"Why is NVDA down today? Pull sentiment + latest articles." → Calls
get_sentiment("NVDA")and Claude summarises the rationales.
Pricing
Praesentire's pricing (the API behind this MCP):
| Tier | Requests / day | Price |
|---|---|---|
| Free | 100 | $0 forever |
| Hobby | 1,000 | $19 / mo |
| Pro | 10,000 | $99 / mo |
| Business | 100,000 | $499 / mo |
Each tool call = 1 request. get_sentiment_batch with N tickers = N requests.
Configuration
Env vars:
| Var | Default | Description |
|---|---|---|
PRAESENTIRE_API_KEY |
(required) | Your API key (pr_...). Get one at https://praesentire.com/dashboard. |
PRAESENTIRE_BASE_URL |
https://praesentire.com/api/v1 |
Override if self-hosting / testing against staging. |
Error handling
The MCP server maps Praesentire's HTTP errors to LLM-friendly messages:
- 401 → "API key invalid or revoked. Create a new one at praesentire.com/dashboard."
- 429 → "Daily limit reached for tier X. Upgrade at praesentire.com/pricing or wait for reset."
- 400 → Specific validation error (invalid ticker, bad params).
- 5xx → "Praesentire API error N. Try again."
Links
- 🏠 praesentire.com
- 📖 API docs
- 🔑 Dashboard
- 🐛 Issues
License
MIT
インストール
praesentire mcp をクライアントに追加します。お使いのものを選んでください。
claude mcp add praesentire-mcp -- npx -y praesentire-mcpcodex mcp add praesentire-mcp -- npx -y praesentire-mcpamp mcp add praesentire-mcp -- npx -y praesentire-mcp{
"mcpServers": {
"praesentire-mcp": {
"command": "npx",
"args": [
"-y",
"praesentire-mcp"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"praesentire-mcp": {
"command": "npx",
"args": [
"-y",
"praesentire-mcp"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
code --add-mcp '{"name":"praesentire-mcp","command":"npx","args":["-y","praesentire-mcp"]}'Or add the block manually to `.vscode/mcp.json` under `servers`.
{
"mcpServers": {
"praesentire-mcp": {
"command": "npx",
"args": [
"-y",
"praesentire-mcp"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"praesentire-mcp": {
"command": "npx",
"args": [
"-y",
"praesentire-mcp"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"praesentire-mcp": {
"command": "npx",
"args": [
"-y",
"praesentire-mcp"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"praesentire-mcp": {
"type": "local",
"command": "npx",
"args": [
"-y",
"praesentire-mcp"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"praesentire-mcp": {
"command": {
"path": "npx",
"args": [
"-y",
"praesentire-mcp"
]
}
}
}
}Add to your Zed `settings.json`.
npx -y praesentire-mcpRun `goose configure`, choose **Add Extension → Command-line Extension**, and paste this command.
スコア
39 / 100
情報不足
- ドキュメント22/25
- メンテナンス16/25
- 信頼性13/20
- 機能0/15
- 導入のしやすさ12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 80 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 12 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
バージョン履歴
| バージョン | 公開日 |
|---|---|
| 0.1.2最新 | 2026年6月16日 |