Production-grade data tools over the Model Context Protocol. Any agent connects instantly — API key for developers, pay-per-call USDC for autonomous pipelines.
API key for humans building on the platform. x402 micropayments for autonomous agents that need no account.
Subscribe for an API key and use the /mcp endpoint. Stripe metered billing — pay only for what you use.
# Claude Desktop — claude_desktop_config.json { "mcpServers": { "inferventis": { "type": "http", "url": "https://mcp-server-295985738387.europe-west1.run.app/mcp", "headers": { "x-api-key": "YOUR_API_KEY" } } } }
# Quick test via curl curl -X POST https://mcp-server-295985738387.europe-west1.run.app/mcp \ -H "Content-Type: application/json" \ -H "Accept: application/json, text/event-stream" \ -H "x-api-key: YOUR_API_KEY" \ -d '{"jsonrpc":"2.0","method":"tools/list","params":{},"id":1}'
Need an API key? Contact us or check the dashboard for your usage.
No account. No API key. Your agent pays $0.001 USDC per call on Base — permissionless, on-chain, instant. Built on the x402 Linux Foundation standard.
# x402-aware client (Node.js) import { withPaymentInterceptor } from "x402-axios"; import { privateKeyToAccount } from "viem/accounts"; import axios from "axios"; const account = privateKeyToAccount("0x<agent-wallet-key>"); const client = withPaymentInterceptor( axios.create({ baseURL: "https://mcp-server-295985738387.europe-west1.run.app" }), account, ); // Interceptor handles 402 → pays → retries automatically const res = await client.post("/mcp-pay", { jsonrpc: "2.0", method: "tools/call", params: { name: "tool_finder", arguments: { intent: "convert currency" } }, id: 1 });
Requires a wallet funded with USDC on Base (mainnet) or Base Sepolia (testnet). Get testnet USDC free at coinbase.com/faucets.
All tools are callable via MCP tools/call. The discovery engine ranks them by relevance to your intent.
Live foreign exchange rates. Converts any amount between currencies using real-time data from open.er-api.com.
Real-time stock price, intraday high/low, percentage change, and company info via Finnhub.
Bank account transactions and balance via TrueLayer Open Banking (PSD2). Returns realistic mock data if no token set.
Live Stripe data — recent payments, failed charges, customer details, subscription status. Four query types.
Semantic tool discovery. Describe what you need in plain English — returns a ranked list of the best tools to call, scored by intent match and manifest quality.
Compound interest, loan amortisation, ROI, mortgage repayments, and IRR — structured financial computations with no external API needed.
Live cryptocurrency prices, 24h change, market cap, and volume via CoinGecko. Supports BTC, ETH, and 100+ tokens.
Round-trip connectivity test. Uppercases a message and returns a timestamp. Use to verify your MCP connection is working.
Call tool_finder with a plain-English intent. It embeds your query using a local all-MiniLM-L6-v2 model and scores every registered tool in real time.
Manifest quality is the fraction of input schema properties that have descriptions ≥ 15 characters. A well-described tool consistently outranks a vague one — even if both do the same thing. This rewards operators who write good tool docs.
{
"name": "tool_finder",
"arguments": {
"intent": "show me recent failed payments",
"top_k": 5
}
}
Live example — intent: "show me recent failed payments"
payment_tool is an identical handler to stripe_payments with a weak description. The 30-point gap is entirely due to manifest quality — not the tool itself. This is the core value proposition.
No external AI API needed
Embeddings run locally using all-MiniLM-L6-v2 (~25 MB, downloaded once). Zero latency on external AI services — every tool_finder call is self-contained.
x402 is the HTTP 402 Payment Required standard, adopted by the Linux Foundation in April 2026 with Google, AWS, Microsoft, Stripe, Visa, and Mastercard. No accounts. No subscriptions. The payment receipt is the credential.
/mcp-pay — no API key, no auth header.X-Payment-Required contains the amount, network, and recipient wallet address.X-Payment header. Takes ~1 second on Base.Listed on the official MCP registry. Agent frameworks that support registry-based discovery can find and connect automatically.
Published to the official Model Context Protocol registry via DNS-authenticated namespace ai.inferventis. Agent frameworks including Claude, Cursor, and MCP-aware pipelines can discover this server without any manual configuration.