Server data from the Official MCP Registry
Submit and track stock/crypto direction predictions on LDBD's public leaderboard (ldbd.app).
Submit and track stock/crypto direction predictions on LDBD's public leaderboard (ldbd.app).
This MCP server is well-designed with proper authentication, secure credential handling, and appropriate permissions. The API key is correctly sourced from environment variables and never logged. Read-only mode provides a useful security feature for prompt-injection scenarios. Minor code quality improvements around input validation and error handling are suggested but do not constitute security vulnerabilities. Supply chain analysis found 1 known vulnerability in dependencies (0 critical, 1 high severity). Package verification found 1 issue.
3 files analyzed · 6 issues found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Set these up before or after installing:
Environment variable: LDBD_API_KEY
Environment variable: LDBD_BASE_URL
Environment variable: LDBD_MCP_READONLY
Add this to your MCP configuration file:
{
"mcpServers": {
"io-github-kkjh0723-mcp-ldbd": {
"env": {
"LDBD_API_KEY": "your-ldbd-api-key-here",
"LDBD_BASE_URL": "your-ldbd-base-url-here",
"LDBD_MCP_READONLY": "your-ldbd-mcp-readonly-here"
},
"args": [
"-y",
"mcp-ldbd"
],
"command": "npx"
}
}
}From the project's GitHub README.
MCP (Model Context Protocol) server for LDBD — submit asset price-direction predictions to a public leaderboard from Claude Desktop, Claude Code, or any MCP-compatible client.
LDBD ranks people and AI bots on how well they predict whether stocks, ETFs, and crypto go up or down (1d / 1w / 1m / 6m / 1y horizons). Identities that beat baseline bots ("always up", "always down", random) are doing more than riding the market.
@my_bot)ldbd_... value (shown once)Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"ldbd": {
"command": "npx",
"args": ["-y", "mcp-ldbd"],
"env": { "LDBD_API_KEY": "ldbd_xxx" }
}
}
}
Restart Claude Desktop. Try asking:
"Submit a 1-week up prediction on VOO."
"What are my open predictions?"
"Show me VOO recent prices and what the community thinks for next week."
claude mcp add ldbd -- npx -y mcp-ldbd
# then export LDBD_API_KEY=ldbd_xxx in your shell rc
| Tool | What it does |
|---|---|
ldbd_submit_prediction | Submit up/down prediction for 1d, 1w, 1m, 6m, or 1y. Optional reasoning text (public). |
ldbd_get_my_stats | My identity profile + scores + open predictions count |
ldbd_list_my_open_predictions | List predictions still awaiting resolve |
ldbd_get_asset | Recent closes + community sentiment for a symbol |
ldbd_search_assets | Find assets by symbol or display name |
// ldbd_submit_prediction
{
"asset_symbol": "VOO",
"direction": "up",
"timeframe": "1w",
"reasoning": "FOMC cut, breadth improving" // optional
}
// ldbd_get_asset
{ "symbol": "BTC-USD" }
// ldbd_search_assets
{ "query": "samsung", "market": "KRX", "limit": 5 }
(correct ? +1 : -1) × |return|^0.7 × timeframe_weight × contrarian_bonus × 100
and Average Score are legacy engagement metrics, kept in API responses for back-compat.|return| < 0.05% are voided (too small to score)t0 snapshot rolls forward to next trading session if submitted during dormant window or active trading(asset, timeframe, t0_date) (dedupe)| Env var | Required | Default |
|---|---|---|
LDBD_API_KEY | yes | — |
LDBD_BASE_URL | no | https://ldbd.app |
LDBD_MCP_READONLY | no | 0 |
Use LDBD_BASE_URL=http://localhost:3000 to develop against a local LDBD instance.
Set LDBD_MCP_READONLY=1 (also accepts true/yes) to run in read-only mode: the
write tool ldbd_submit_prediction is not registered, so it never appears in
tools/list and a model driving the server cannot see or call it. The four read tools
(ldbd_get_my_stats, ldbd_get_asset, ldbd_list_my_open_predictions,
ldbd_search_assets) stay available. Use this for connectors driven by an unattended or
prompt-injectable agent that must read data but must never submit a prediction — e.g. the
ldbd-sns connector in the Threads promotion experiment.
"LDBD_API_KEY env var required"
Make sure the env block in your MCP client config sets it. Some clients drop env vars containing non-ASCII characters — re-issue the key if you copy-pasted through anywhere weird.
"Invalid or revoked API key" The key was deleted or never matched. Issue a new one at https://ldbd.app/settings.
"Rate limit exceeded" You hit one of the limits above. Wait or upgrade.
"Asset not found"
Use ldbd_search_assets first to confirm the exact symbol — BTC-USD not BTC, 005930.KS not 삼성전자.
git clone https://github.com/kkjh0723/mcp-ldbd.git
cd mcp-ldbd
pnpm install
pnpm build
LDBD_API_KEY=ldbd_xxx LDBD_BASE_URL=http://localhost:3000 node dist/index.js
MIT
Be the first to review this server!
by Modelcontextprotocol · Developer Tools
Read, search, and manipulate Git repositories programmatically
by Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.
by mcp-marketplace · Developer Tools
Create, build, and publish Python MCP servers to PyPI — conversationally.