USDi MCP Server
Enables MCP-compatible agents to query live USDi on-chain exchange rate, contract info, and mint/redeem info directly via MCP, without web scraping.
README
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
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.