Orisha Data MCP
OfficialClick on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Orisha Data MCPshow me the free preview for BTC-USD"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Orisha Data MCP
Client-side MCP wrapper for the public Orisha Data x402 endpoints.
Orisha Data provides machine-readable market-data endpoints over HTTPS with x402 payment support. This wrapper lets an MCP-capable client inspect free previews and discovery documents before making paid x402 calls.
Public Endpoints
Base URL: https://orisha-data.com
Tool | Public endpoint | Price | Notes |
|
| Free | Machine-readable service docs. |
|
| Free | x402 resource discovery. |
|
| Free | Public response-signing key set. |
|
| Free | Unsigned sample for the C1 price endpoint. |
|
| Free | Unsigned redacted D1 structure and freshness preview. |
|
| $0.01 | Paid x402 crypto/FX price response. |
|
| $0.07 | Paid x402 CME micro futures structural levels response. |
D1 coverage window: Monday-Friday, 09:30-16:10 America/New_York. During active market windows, D1 may refuse overly stale data before payment instead of charging for unusable data.
Related MCP server: x402-api
Install
git clone https://github.com/OrishaAI/orisha-data-mcp.git
cd orisha-data-mcp
npm installRun the free live smoke check:
npm run smokeRun the MCP server over stdio:
npm run startMCP Client Configuration
Example client configuration:
{
"mcpServers": {
"orisha-data": {
"command": "node",
"args": ["/absolute/path/to/orisha-data-mcp/src/server.mjs"],
"env": {
"ORISHA_DATA_BUYER_PRIVATE_KEY": "0xYOUR_BUYER_PRIVATE_KEY_PLACEHOLDER"
}
}
}
}The placeholder key above is intentionally not real. Use a buyer wallet only when you intend to call paid tools.
Free Evaluation Flow
An evaluating agent can try the service without payment:
Call
orisha_docsto read the public service documentation.Call
orisha_x402_discoveryto inspect the paid resource list.Call
orisha_c1_previewwithBTC-USD,ETH-USD, orSOL-USD.Call
orisha_d1_previewto inspect D1 freshness and redacted structure.Call
orisha_signing_keysto fetch the public key set used for paid response verification.
Equivalent direct HTTPS checks:
curl -s https://orisha-data.com/docs
curl -s https://orisha-data.com/.well-known/x402
curl -s https://orisha-data.com/c1/preview/BTC-USD
curl -s https://orisha-data.com/d1/preview
curl -s https://orisha-data.com/.well-known/orisha-signing-key.jsonPaid Usage
Paid tools require a buyer wallet private key in the MCP client process:
ORISHA_DATA_BUYER_PRIVATE_KEY=0xYOUR_BUYER_PRIVATE_KEY_PLACEHOLDER npm run startAvailable paid tools:
orisha_c1_price: calls the C1 paid price endpoint for a requested pair.orisha_d1_levels: calls the D1 paid levels endpoint.
Responses from paid tools may include _signature. Verify those signatures using the key set at /.well-known/orisha-signing-key.json.
Response Signing
The public signing key set is available at:
https://orisha-data.com/.well-known/orisha-signing-key.jsonThe key set currently contains orisha-response-ed25519-v1. Treat the endpoint as a key set from day one so future rotations can add keys without changing client assumptions.
Safety
This package is client-side only.
Free tools do not require a buyer key.
Paid tools require a buyer key and may spend USDC through x402.
Do not put production buyer keys in examples, screenshots, issues, or logs.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/OrishaAI/orisha-data-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server