Skip to main content
Glama

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

  1. Connect — Agents connect via MCP (stdio or HTTP)

  2. Discover — Agent calls list_tools() → sees 20 tools

  3. Pay — Agent calls generate_invoice + check_balance for crypto payment

  4. Use — 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 .well-known/ai-plugin.json

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_to_markdown

Website → Markdown

Convert any web page to clean Markdown

$0.0005

2

website_metadata

Website Metadata

Meta tags, OG, Twitter Cards, headings, images, favicon

$0.0002

3

technology_detector

Technology Detector

CMS, frameworks, analytics, CDN, server tech

$0.0003

4

contact_extractor

Contact Extractor

Emails, phones, social links, addresses

$0.0005

5

ai_website_summary

AI Website Summary

Structured summary + optional AI narrative

$0.002

6

opengraph_extractor

OpenGraph Extractor

OG tags, Twitter Cards, social preview data

$0.0002

7

robots_txt_parser

Robots.txt Parser

Crawl rules, disallowed paths, sitemap URLs

$0.0002

8

sitemap_parser

Sitemap Parser

Discover & parse XML sitemaps

$0.0005

9

ssl_checker

SSL Checker

Certificate details, expiry, security grade

$0.0002

10

dns_lookup

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

Marketing Contact Extractor

Emails, phones, social profiles, address

$0.0005

12

google_maps_reviews

Google Maps Reviews

Ratings, reviews, business metadata by Place ID or search

$0.001

13

business_metadata

Business Metadata

Category, founding year, hours, certifications, payments

$0.0003

14

seo_audit

SEO Audit

On-page SEO analysis with scoring (0–100)

$0.0005

15

ai_company_summary

AI Company Summary

AI-powered business overview + narrative

$0.002

16

marketing_technology_detector

Technology Detector

CMS, frameworks, analytics, hosting

$0.0003

17

citation_checker

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_pricing

Get current pricing for all APIs

19

generate_invoice

Generate Solana USDC payment invoice

20

check_balance

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

docs/gpt-store-guide.md

šŸ“ Step-by-step

RapidAPI

docs/rapidapi-publish-guide.md

šŸ“ Upload-ready spec + copy

Apify Store

See Apify console links below

šŸ”“ Needs Store terms accepted

api.market

Pre-prepared OpenAPI specs at /home/node/api-market-specs/

šŸ”“ Redis outage

šŸŖ™ Solana USDC Payments

Docs: docs/setup-wallet.md

Both droplets accept Solana USDC (token EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v):

  • POST /api/v1/payments/invoice — generate wallet + memo

  • POST /api/v1/payments/verify — verify payment → add credits

  • POST /api/v1/payments/balance — check balance

  • GET /api/v1/payments/pricing — per-endpoint pricing

Droplet

Current Wallet

Website Intel

8x2z3F4G5H6J7K8L9M0N1P2Q3R4S5T6U7V8W9X0Y (placeholder)

Marketing Bundle

8x2z3F4REPLACE_WITH_YOUR_REAL_SOLANA_WALLET (placeholder)

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

/.well-known/ai-plugin.json

OpenAI GPT Actions manifest

/.well-known/openapi.json

OpenAPI spec for AI consumption

/api/v1/payments/pricing

Per-endpoint USDC pricing

/health

Health check (no auth)

/status

Component status (no auth)


šŸ“ˆ Monitoring

Endpoint

Description

Auth

GET /health

Service health check

None

GET /status

Component status (cache, auth, payments)

None

GET /metrics

Operational metrics (P50/P95/P99, cache hit rate)

Admin key

GET /dashboard

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.

A
license - permissive license
-
quality - not tested
C
maintenance

Maintenance

–Maintainers
–Response time
–Release cycle
–Releases (12mo)
Commit activity

Related MCP Servers

  • A
    license
    -
    quality
    D
    maintenance
    Multi-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.
    8
    1
    MIT
  • A
    license
    -
    quality
    F
    maintenance
    23 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.
    62
    6
    MIT
  • A
    license
    -
    quality
    C
    maintenance
    MCP 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).
    1
    MIT

View all related MCP servers

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.

View all MCP Connectors

Latest Blog Posts

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