On-chain stablecoin market cap and Bitcoin institutional holdings data.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"io-github-xorbuc-orbuc": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Remote MCP server providing AI agents with direct access to independent on-chain stablecoin market cap and Bitcoin institutional holdings data.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in finance
Real-time financial market data: stocks, forex, crypto, commodities, and economic indicators
A Model Context Protocol (MCP) server that provides AI assistants with direct access to the Spreedly payments API. Enables LLMs to manage gateways, process transactions, tokenize payment methods, and more, through structured, validated tool calls.
MCP server for InsightSentry financial data API - market data, options, screeners, and more
AI agents get on-chain identity, credentials, reputation, escrow, and persistent memory on XRPL.
MCP Security Weekly
Get CVE alerts and security updates for io.github.xOrbuc/orbuc and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Remote MCP server providing AI agents with direct access to independent on-chain stablecoin market cap and Bitcoin institutional holdings data.
Endpoint: https://mcp.orbuc.io/mcp/orbuc
Protocol: MCP Streamable HTTP (JSON-RPC 2.0 over POST) Authentication: None required (open access) Transport: Stateless HTTP — no session persistence
Orbuc is a digital asset research and investment firm. Orbuc produces its own data, tracking two core datasets independently — no third-party aggregators:
Stablecoin Market Cap — direct on-chain totalSupply() RPC calls across 19 blockchain networks covering 13 stablecoins (USDT, USDC, USDS, DAI, USDe, FDUSD, PYUSD, USD1, BUIDL, BUIDL-I, crvUSD, GHO, FRAX). Updated daily at 03:00 UTC.
Bitcoin Institutional Holdings — compiled from SEC EDGAR 8-K filings, on-chain Etherscan data, and verified public disclosures across 6 segments (ETF funds, public companies, governments, private companies, DeFi/wrapped BTC, exchanges & custodians). Updated daily at 02:00 UTC.
| Tool | Description | Parameters |
|---|---|---|
orbuc_stablecoin_mcap | Historical daily total stablecoin market cap | days, start_date, end_date |
orbuc_stablecoin_latest | Latest snapshot — all 13 coins with per-chain breakdown | — |
orbuc_stablecoin_coin | Historical supply for a specific stablecoin | symbol, days, start_date, end_date |
orbuc_stablecoin_coin_latest | Latest supply for one coin with chain breakdown | symbol |
orbuc_stablecoin_aggregate | Daily aggregate by total, symbol, or chain | level, start_date, end_date |
orbuc_stablecoin_chains | Supply distribution across chains | days |
| Tool | Description | Parameters |
|---|---|---|
orbuc_btc_holdings_current | Latest BTC held by institutions per segment | — |
orbuc_btc_holdings_segments | Segment breakdown with confidence and sources | — |
orbuc_btc_holdings_daily | Daily time series, optionally by segment | segment, start_date, end_date |
orbuc_btc_holdings_weekly | Weekly aggregated holdings | segment |
orbuc_btc_health | BTC tracker health status | — |
orbuc_stablecoin_health | Stablecoin tracker health status | — |
Add as a custom MCP connector:
https://mcp.orbuc.io/mcp/orbuc
Add to .vscode/mcp.json:
{
"servers": {
"orbuc": {
"type": "http",
"url": "https://mcp.orbuc.io/mcp/orbuc"
}
}
}
Add to claude_desktop_config.json:
{
"mcpServers": {
"orbuc": {
"type": "url",
"url": "https://mcp.orbuc.io/mcp/orbuc"
}
}
}
from mcp import ClientSession
from mcp.client.streamable_http import streamablehttp_client
async def query_orbuc():
async with streamablehttp_client("https://mcp.orbuc.io/mcp/orbuc") as (read, write, _):
async with ClientSession(read, write) as session:
await session.initialize()
tools = await session.list_tools()
print(f"{len(tools.tools)} tools available")
result = await session.call_tool("orbuc_btc_holdings_current", {})
print(result.content[0].text)
# Initialize
curl -X POST https://mcp.orbuc.io/mcp/orbuc \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2024-11-05","capabilities":{},"clientInfo":{"name":"test","version":"1.0"}}}'
# List tools
curl -X POST https://mcp.orbuc.io/mcp/orbuc \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/list","params":{}}'
# Call a tool
curl -X POST https://mcp.o
... [View full README on GitHub](https://github.com/xOrbuc/orbuc-mcp-server#readme)