streamable-httpMITupdated 1mo ago
A Python MCP (Model Context Protocol) server that lets any MCP-compatible agent — Claude, or other MCP clients — query USDi directly, instead of scraping web pages for its data.
What can you do with usdi mcp server?
USDi MCP Server
A Python MCP (Model Context Protocol) server that lets any MCP-compatible agent — Claude, or other MCP clients — query USDi directly, instead of scraping web pages for its data.
USDi is a CPI-indexed cryptocurrency issued by USDi Partners LLC. Details: usdicoin.com.
Live endpoint
https://usdi-mcp.onrender.com/mcp
Transport: Streamable HTTP. No authentication required (read-only public data).
Tools
- get_usdi_exchange_rate — live on-chain USDi/USDC exchange rate via
getExchangeRate() - get_usdi_contract_info — network, token contract, pool address, issuer/fund manager, and disambiguation from the unrelated "Interest Protocol" token
- get_usdi_mint_redeem_info — valuation mechanism, backing, retail and institutional mint/redeem process, risk characteristics
Deferred to a later version: liquidity/pool depth (Uniswap V3 QuoterV2), fund composition detail, audit document retrieval.
Using this server
Point any MCP-compatible client at the live endpoint above. For Claude
Desktop, add to claude_desktop_config.json:
{
"mcpServers": {
"usdi": {
"url": "https://usdi-mcp.onrender.com/mcp",
"transport": "streamable-http"
}
}
}
Running locally
python3 -m venv venv
source venv/bin/activate # Windows: venv\Scripts\activate
pip install -r requirements.txt
export ALCHEMY_API_KEY="your-alchemy-key" # or set RPC_URL directly
python3 server.py
Starts an HTTP server on port 8000 (override with PORT), serving MCP's
streamable-http transport at /mcp.
Deployment
This repo includes a Dockerfile and render.yaml for deployment on
Render. See render.yaml for configuration.
Known limitation
RATE_DECIMALS in server.py assumes an 18-decimal fixed-point
convention for getExchangeRate()'s return value. Verify this against a
known-good rate before relying on it in production.
License / Contact
Issuer: USDi Partners LLC — usdicoin.com
Install
Add usdi mcp server to your client. Pick the one you use.
claude mcp add --transport http usdi-mcp-server https://usdi-mcp.onrender.com/mcpcodex mcp add usdi-mcp-server --url https://usdi-mcp.onrender.com/mcp{
"mcpServers": {
"usdi-mcp-server": {
"url": "https://usdi-mcp.onrender.com/mcp"
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"servers": {
"usdi-mcp-server": {
"type": "http",
"url": "https://usdi-mcp.onrender.com/mcp"
}
}
}Add to `.vscode/mcp.json` in your workspace.
{
"mcpServers": {
"usdi-mcp-server": {
"url": "https://usdi-mcp.onrender.com/mcp"
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"usdi-mcp-server": {
"serverUrl": "https://usdi-mcp.onrender.com/mcp"
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
Score
39 / 100
Incomplete
- Documentation22/25
- Maintenance16/25
- Trust13/20
- Capability0/15
- Install experience12/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 34 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
- 6 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Version history
| Versions | Published |
|---|---|
| 1.0.0Latest | Jul 27, 2026 |