AgisHub MCP Server
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., "@AgisHub MCP ServerConvert 3 PM New York time to London time."
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.
AgisHub
Pay-per-call tools for AI agents — no signup, no API keys, just USDC.
Live data & utilities over x402 micropayments on Base. Your agent pays a few tenths of a cent per call from its own wallet; no accounts, no monthly plans.
Why AgisHub
Traditional APIs make an agent stop and ask a human: sign up, create an account, copy an
API key, add a credit card, read the docs. AgisHub tools are callable the moment an agent
has a funded wallet — the server answers HTTP 402, the agent signs a USDC payment on
Base, and the data flows back. Under a second, no human in the loop.
Raw API + key + plan | Single‑vendor MCP | AgisHub | |
Sign‑up / API key | required | required | none |
Billing | monthly / credits | subscription | per call (USDC) |
Agent can pay itself | ✗ | ✗ | ✓ (x402) |
Free tier for discovery | varies | varies | ✓ (free MCP) |
Multiple tools, one door | ✗ | one vendor | ✓ |
Free MCP tier to discover and prototype; pay‑per‑call x402 HTTP tier for production, priced per request in USDC.
Related MCP server: navi-x402-mcp
Two doors, one platform
MCP (free) — remote Model Context Protocol server. Point Claude / Cursor / any MCP client at the URL and the tools appear.
HTTP x402 (paid) —
POST /v1/<tool>; unpaid requests get a402challenge, the client signs a USDC payment (EIP‑3009 on Base) and retries. USDC contract0x8335…2913.
MCP (free): https://api.agishub.com/mcp
HTTP (paid): POST https://api.agishub.com/v1/<tool>
Discovery: https://api.agishub.com/openapi.jsonTools
24 tools across 13 services. Prices are per call in USDC on Base. Tools marked MCP · HTTP are free via MCP and pay‑per‑call via HTTP x402; tools marked HTTP are paid‑only (they touch metered infrastructure, so they run exclusively on the x402 endpoint).
🕔 Timezone — world clock, date math & scheduling
Tool | What it does | Channels | Cost (x402) |
| Current local time in an IANA timezone — UTC offset, abbreviation, DST flag. | MCP · HTTP | $0.001 |
| Convert a datetime between two IANA zones. Accepts ISO 8601 or natural language ("next Tuesday 3pm"). | MCP · HTTP | $0.001 |
| Convert one instant into many zones at once — ideal for world‑clock views. | MCP · HTTP | $0.001 |
| Exact UTC offset of a zone at a given instant (DST‑aware; handles +05:30, +05:45). | MCP · HTTP | $0.001 |
| Resolve a city or country to its IANA timezone(s). "Delhi" → | MCP · HTTP | $0.001 |
| Add/subtract time respecting DST, or diff two datetimes across zones. | MCP · HTTP | $0.001 |
| Overlapping working‑hour slots across timezones (skips weekends & public holidays). | MCP · HTTP | free: 1 slot · $0.02: all |
| Is a date a public holiday in a country (ISO 3166‑1)? Authoritative public‑holiday data. | MCP · HTTP | $0.001 |
| List or search valid IANA timezone names. | MCP | free |
🕸️ Web — read any web page as clean markdown
Tool | What it does | Channels | Cost (x402) |
| Fetch any public URL and return its main content as clean, token‑efficient markdown (title, headings, links, lists). Optional | MCP · HTTP | $0.004 |
🤖 AI — NLP & generation (no external API key)
Tool | What it does | Channels | Cost (x402) |
| Summarize a block of text into a short abstract, with an optional target length. | MCP · HTTP | $0.003 |
| Classify a text into exactly one of the candidate labels you provide. | MCP · HTTP | $0.002 |
| Extract named entities (people, orgs, locations, dates) as structured JSON. | MCP · HTTP | $0.003 |
| Turn text into a multilingual embedding vector (BGE‑M3) for semantic search / RAG. | MCP · HTTP | $0.001 |
| Ask a general‑purpose LLM a question, with an optional system prompt. | MCP · HTTP | $0.003 |
| Transcribe an audio file (by public URL) to text. | MCP · HTTP | $0.006 |
| Convert text into spoken audio (base64 MP3), in several languages. | HTTP | $0.005 |
🧠 Memory / RAG — persistent semantic memory
Tool | What it does | Channels | Cost (x402) |
| Store text in a persistent, searchable collection (namespace); embedded & indexed. | MCP · HTTP | $0.001 |
| Semantically search a namespace and return the most relevant stored entries. | MCP · HTTP | $0.001 |
📤 Webhooks — guaranteed, retried delivery
Tool | What it does | Channels | Cost (x402) |
| Deliver a webhook (POST/PUT/PATCH) with background retries. Returns a | MCP · HTTP | $0.002 |
| Check a webhook job's delivery status (queued / retrying / delivered / failed). | MCP · HTTP | $0.001 |
💱 Finance & crypto — live rates and prices
Tool | What it does | Channels | Cost (x402) |
| Convert an amount between currencies using live daily FX rates (ISO 4217). | MCP · HTTP | $0.001 |
| Live USD spot prices for cryptocurrencies by ticker (BTC, ETH, SOL). | MCP · HTTP | $0.001 |
🔧 Utilities & links
Tool | What it does | Channels | Cost (x402) |
| Generate a QR code (inline SVG + data URI) for any text or URL. | MCP · HTTP | $0.001 |
| Convert between units of one category (length, mass, volume, speed, area, storage, time, temperature). | MCP · HTTP | $0.001 |
| Shorten a long URL into a compact | MCP · HTTP | $0.001 |
🖼️ Render & browser — documents, images, automation (paid‑only)
Tool | What it does | Channels | Cost (x402) |
| Render a public URL or raw HTML into a PDF (base64). Headless browser. | HTTP | $0.008 |
| Capture a PNG screenshot of any public URL (full page or viewport). | HTTP | $0.006 |
| Generate an image from a text prompt (base64 PNG). | HTTP | $0.01 |
| Drive a headless browser through steps — click, type, wait, extract, screenshot — for logins, forms and multi‑step flows. | HTTP | $0.01 |
New services plug into the same MCP + x402 doors and appear automatically in
/openapi.json.
Quick start
Use the free MCP tools (Claude Code example):
claude mcp add --transport http timezone https://api.agishub.com/mcpPay per call over HTTP x402 (any x402 client / wallet):
# Unpaid → 402 challenge; an x402-aware client signs & retries automatically.
curl -X POST https://api.agishub.com/v1/web-scraper \
-H 'content-type: application/json' \
-d '{"url":"https://example.com","render":true}'Your agent's wallet only needs USDC on Base — the facilitator covers gas.
For agents & LLMs
Payments are real USDC on Base mainnet and irreversible. Fund a dedicated agent wallet with a small balance; that balance is your spending cap.
The free MCP tier never charges. Only the
/v1/*(x402 HTTP) routes take payment.extractfetches arbitrary public URLs; it will not reach private/internal hosts.
Pricing
Per‑call, in USDC on Base — no subscription. Roughly: $1 ≈ 1,000 timezone calls, ≈ 250 web extractions, or 50 full meeting‑slot searches. Settlement fees on Base are a fraction of a cent and paid by the facilitator.
License
MIT © AgisHub
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityDmaintenance22 MCP tools for AI agents: crypto prices and trading signals (53 coins), stock prices and company financials, forex rates and conversion, and web scraping with AI summaries. All powered by x402 USDC micropayments on Base. $0.01-$0.25 per request.2219MIT
- AlicenseAqualityDmaintenanceEnables AI agents to access paid tools like crypto prices, weather, translation, and web intelligence via per-request USDC payments on Base, with no API keys or subscriptions.1534MIT
- AlicenseNot gradedqualityBmaintenance55+ pay-per-call tools for AI agents over MCP: live telemetry, blockchain/on-chain checks, environmental, transit, finance, and network utilities. No API key or signup — agents pay per request with x402 USDC micropayments (Base and Solana).MIT
- AlicenseNot gradedqualityBmaintenanceWebsite intelligence tools for AI agents. Ten pay-per-call tools via x402 micropayments (USDC on Base) — no accounts, no API keys.2MIT
Related MCP Connectors
63 pay-per-call tools for agents: vision, text, data, web, blockchain. USDC on Base via x402.
30 pay-per-call APIs for AI agents: compliance, trade, safety, web, data. USDC on Base via x402.
Pay-per-use weather, environment, finance, and on-chain intelligence tools for AI agents via x402.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/agishub/agishub-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server