20-tool MCP server
Provides Google Maps Reviews API integration, allowing agents to retrieve ratings, reviews, and business metadata by Place ID or search.
Exposes AI agent discovery files (ai-plugin.json and OpenAPI spec) so OpenAI GPT agents can auto-discover and call the hosted APIs.
Enables crypto payments on Solana USDC, with tools to generate invoices, verify payments, and check balances.
API Gateway ā 17 APIs for AI Agents
Single MCP server exposing 17 production APIs across two droplets.
š What This Is
An MCP (Model Context Protocol) server that wraps 17 real, deployed APIs into MCP tools. Any AI agent with MCP support can discover, call, and pay for these APIs programmatically.
How AI Agents Use It
Connect ā Agents connect via MCP (stdio or HTTP)
Discover ā Agent calls
list_tools()ā sees 20 toolsPay ā Agent calls
generate_invoice+check_balancefor crypto paymentUse ā Agent calls any API tool, credits auto-deduct
Revenue Model
Channel | How It Makes Money | Status |
š¤ AI Agents via MCP | Agents discover tools ā generate invoice ā send USDC ā use APIs | ā LIVE |
š¤ AI Agents via | OpenAI GPT Agents auto-discover APIs | ā LIVE |
RapidAPI Marketplace | $29ā$199/mo subscriptions | š¦ Ready ā needs RapidAPI provider account |
Apify Store | Per-run pricing | š¦ Ready, not published |
api.market | Global API marketplace | š¦ Ready (Redis issues) |
Related MCP server: APIMesh MCP Server
š API Inventory ā 17 APIs + 3 Payment Tools
š„ļø Website Intelligence (167.71.22.95) ā 10 APIs
# | MCP Tool | API | Description | Price |
1 |
| Website ā Markdown | Convert any web page to clean Markdown | $0.0005 |
2 |
| Website Metadata | Meta tags, OG, Twitter Cards, headings, images, favicon | $0.0002 |
3 |
| Technology Detector | CMS, frameworks, analytics, CDN, server tech | $0.0003 |
4 |
| Contact Extractor | Emails, phones, social links, addresses | $0.0005 |
5 |
| AI Website Summary | Structured summary + optional AI narrative | $0.002 |
6 |
| OpenGraph Extractor | OG tags, Twitter Cards, social preview data | $0.0002 |
7 |
| Robots.txt Parser | Crawl rules, disallowed paths, sitemap URLs | $0.0002 |
8 |
| Sitemap Parser | Discover & parse XML sitemaps | $0.0005 |
9 |
| SSL Checker | Certificate details, expiry, security grade | $0.0002 |
10 |
| DNS Lookup | A, AAAA, MX, NS, CNAME, TXT, subdomain discovery | $0.0002 |
Payment: Solana USDC ($USDC on Solana mainnet)
š Marketing API Bundle (64.227.2.61) ā 7 APIs
# | MCP Tool | API | Description | Price |
11 |
| Marketing Contact Extractor | Emails, phones, social profiles, address | $0.0005 |
12 |
| Google Maps Reviews | Ratings, reviews, business metadata by Place ID or search | $0.001 |
13 |
| Business Metadata | Category, founding year, hours, certifications, payments | $0.0003 |
14 |
| SEO Audit | On-page SEO analysis with scoring (0ā100) | $0.0005 |
15 |
| AI Company Summary | AI-powered business overview + narrative | $0.002 |
16 |
| Technology Detector | CMS, frameworks, analytics, hosting | $0.0003 |
17 |
| Citation Checker | Directory presence across 10+ platforms + NAP scoring | $0.001 |
Payment: Solana USDC ($USDC on Solana mainnet)
š° Payment/Management Tools ā Free
# | MCP Tool | Description |
18 |
| Get current pricing for all APIs |
19 |
| Generate Solana USDC payment invoice |
20 |
| Check credit balance for an API key |
š§ Quick Start
For AI Agents (MCP-native)
Configure the MCP server in your agent:
{
"mcpServers": {
"all-apis-gateway": {
"command": "python3",
"args": ["/path/to/mcp_server.py"],
"env": {
"WEBSITE_INTEL_BASE": "http://167.71.22.95",
"WEBSITE_INTEL_KEY": "YOUR_WEBSITE_INTEL_KEY",
"MARKETING_BUNDLE_BASE": "http://64.227.2.61",
"MARKETING_BUNDLE_KEY": "YOUR_MARKETING_KEY"
}
}
}
}For Developers (REST APIs directly)
Website Intelligence:
# Get an admin key (one-time)
curl -X POST http://167.71.22.95/api/v1/auth/generate-key \
-H "Content-Type: application/json" \
-d '{"name":"my-app","tier":"admin"}'
# Call an API
curl -X POST http://167.71.22.95/api/v1/dns-lookup \
-H "X-API-Key: YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{"domain": "example.com"}'
# Get pricing
curl http://167.71.22.95/api/v1/payments/pricing
# Generate payment invoice
curl -X POST http://167.71.22.95/api/v1/payments/invoice \
-H "Content-Type: application/json" \
-d '{"api_key": "YOUR_KEY", "amount_usdc": 5.0}'Marketing Bundle:
curl -X POST http://64.227.2.61/api/v1/contact-extractor \
-H "X-API-Key: YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{"url": "https://example.com"}'š³ Crypto Payment Flow
Both API bundles accept Solana USDC for AI agents.
āāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāā
ā Payment Flow ā
ā ā
ā 1. Agent: POST /payments/invoice ā
ā ā Gets: {wallet_address, memo} ā
ā ā
ā 2. Agent: Send USDC to wallet + memo ā
ā (On Solana mainnet) ā
ā ā
ā 3. Agent: POST /payments/verify ā
ā ā Credits added to API key ā
ā ā
ā 4. Agent: Call any API with X-API-Key ā
ā ā Credits auto-deduct per call ā
āāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāTreasury Wallet: Configured on the droplet (set TREASURY_WALLET env var)
Token: EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v (Solana USDC)
š Rate Limits
Plan | Requests/sec | Daily Limit | Price |
Free | 2 | 100 | $0 |
Starter | 10 | 5,000 | $29/mo |
Growth | 30 | 25,000 | $79/mo |
Enterprise | 100 | 100,000 | $199/mo |
š Architecture
MCP Client (Claude Code, Cline, Hermes, any MCP agent)
ā
ā¼
āāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāā
ā MCP Server (api-gateway) ā
ā - 20 tools ā
ā - Auth injection ā
ā - Error handling ā
ā - Pricing/cost display ā
āāāāāāāā¬āāāāāāāāāāāāāāāāāāāāāāāā
ā
āāāā 167.71.22.95: Website Intelligence (10 APIs + payments)
ā POST /api/v1/{endpoint}
ā POST /api/v1/payments/{invoice,verify,balance,pricing}
ā GET /.well-known/ai-plugin.json
ā
āāāā 64.227.2.61: Marketing API Bundle (7 APIs + payments)
POST /api/v1/{endpoint}
POST /api/v1/payments/{invoice,verify,balance,pricing}
GET /.well-known/ai-plugin.jsonš¦ Marketplace Publishing Guides
Ready-to-use docs for registering on each platform:
Marketplace | Guide | Status |
OpenAI GPT Store | š Step-by-step | |
RapidAPI | š Upload-ready spec + copy | |
Apify Store | See Apify console links below | š“ Needs Store terms accepted |
api.market | Pre-prepared OpenAPI specs at | š“ Redis outage |
šŖ Solana USDC Payments
Docs: docs/setup-wallet.md
Both droplets accept Solana USDC (token EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v):
POST /api/v1/payments/invoiceā generate wallet + memoPOST /api/v1/payments/verifyā verify payment ā add creditsPOST /api/v1/payments/balanceā check balanceGET /api/v1/payments/pricingā per-endpoint pricing
Droplet | Current Wallet |
Website Intel |
|
Marketing Bundle |
|
See docs/setup-wallet.md to replace with your real Solana wallet.
š AI Agent Discovery Endpoints
Both droplets expose AI agent discovery files:
Endpoint | Description |
| OpenAI GPT Actions manifest |
| OpenAPI spec for AI consumption |
| Per-endpoint USDC pricing |
| Health check (no auth) |
| Component status (no auth) |
š Monitoring
Endpoint | Description | Auth |
| Service health check | None |
| Component status (cache, auth, payments) | None |
| Operational metrics (P50/P95/P99, cache hit rate) | Admin key |
| Usage dashboard HTML | Admin key |
š Authentication
Header:
X-API-Key: <your-key>(recommended)Bearer:
Authorization: Bearer <your-key>Query param:
?api_key=<your-key>
Tiers: free, starter, growth, enterprise, admin
š License
Private ā Samay Vashisht. All APIs and code proprietary.
This server cannot be installed
Maintenance
Related MCP Servers
- Alicense-qualityDmaintenanceMulti-tool MCP server for AI agents with 29 tools across web scraping, SEO analysis, screenshot and PDF generation, domain intelligence, content extraction, multi-chain EVM blockchain queries, and security toolkit. Free tier available with no auth required.81MIT
- Alicense-qualityFmaintenance23 pay-per-call web analysis APIs as MCP tools. Security audits, tech stack detection, email verification, SEO analysis, SSL checks, performance monitoring. Supports x402 and Stripe MPP payments.626MIT
- AlicenseAqualityCmaintenanceMCP server for document intelligence via x402 micropayments. 6 tools: document analysis, invoice extraction, screenshot data, alt text, PII detection, sentiment analysis. Pay-per-use with USDC on Base ā no API keys needed.61MIT
- Alicense-qualityCmaintenanceMCP server providing 10 pay-per-call APIs for web scraping, DNS, email validation, and French business data, with autonomous micropayments via the x402 protocol (USDC on Base).1MIT
Related MCP Connectors
Hosted MCP with 91 agent tools: X, domains, SEO, Maps, Trends, Search, YouTube, TikTok, and more.
Scrape, crawl, map and extract the web. Pay per call in USDC, no account or API key.
AI Reasoning Cache & Consensus Layer with 11 MCP tools via Streamable HTTP.
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/samayhuf-star/all-apis-gateway'
If you have feedback or need assistance with the MCP directory API, please join our Discord server