CAT
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Cross AI Tools

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic

Gapup Mcp

getgapup/gapup-mcp-public
HTTPregistry active
Summary

Connects Claude to 185 business intelligence tools that return board-ready JSON instead of chat responses. Think EDGAR filings parsed for M&A signals, eight-jurisdiction sanctions screening (OFAC, EU, UK, UN), EU real estate data from DVF Cerema, PubMed clinical evidence with GRADE ratings, and NAICS/SIC classification. Everything runs on x402 micropayments in USDC or EURC, so agents pay per call without subscriptions. Free tier gives you 100 calls monthly with no card required. Dual-audience mode routes requests to Cerebras for agent consumption (under 5 seconds) or Mistral for human-readable output (around 30 seconds). You'd reach for this when you need cited, structured intelligence that can justify itself in a compliance review rather than generic LLM reasoning.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

Gapup MCP

Gapup MCP

English · Français · Español · Deutsch · 日本語 · 中文 · 한국어 · Português (BR)

smithery badge Glama MCP Registry Tools x402 Free tier License

Agent-payable C-suite knowledge — 271 tools, x402 micro-payments, board-ready JSON.

Live endpoint: https://mcp.gapup.io/mcp Free tier: 100 calls/month, no credit card → hub.gapup.io/agents-api/onboard


What is Gapup MCP?

A hosted Model Context Protocol server exposing 100+ business expertise tools for AI agents. Each tool returns a structured, audited, board-ready JSON deliverable in 1-30 seconds.

Pay-per-call via x402 (USDC + EURC on Base + Optimism). No subscription, no API gateway. The price is encoded in the response — agents pay what they consume.

Why agents use it

  • Board-ready output — Zod-typed JSON, persona-stricte, no chat fluff
  • Dual-audience format — audience param routes human (Mistral gold-standard, ~30s) vs agent (Cerebras qwen-3-235b, <5s)
  • Source-grounded — citations, DOIs, evidence trails; no hallucinated facts
  • EU-first moats — DVF Cerema + Géorisques for real estate, OFAC + EU + UK + UN + SECO + SEMA + DFAT for sanctions
  • Free tier real — 100 calls/mo without credit card, no rate-limit games

What's inside (271 tools)

Top 10 C-suite expertises (most used)

  • competitive_intel — EDGAR + Yahoo + Wayback + Wikipedia multi-source deep-dive
  • sec_filing_decoder — 10-K / 10-Q / 8-K extraction + KPIs movement + red flags + M&A signals
  • sanctions_screener_multi — 8 lists parallel (OFAC + EU + UK + UN + SECO + SEMA + DFAT) + PEP + adverse media
  • kyc_screener — KYC/AML 6 sources refreshed weekly
  • pentest_scope_estimator — PTES scope + effort/cost ranges
  • attack_surface_monitor — passive recon (crt.sh + DNS + Shodan) + CVE/EPSS/KEV
  • clinical_evidence_briefer — PubMed + ClinicalTrials.gov + OpenFDA, GRADE-graded
  • re_deal_screener — EU-first real estate (DVF Cerema + Géorisques)
  • research_paper_qa — OpenAlex 45M open-access + Semantic Scholar + CORE, DOI-cited
  • industry_classifier_naics_sic — NAICS + SIC + NACE + GICS + ISIC + HS with hierarchy + confidence

Categories (full list in docs/API.md)

Business Intelligence · Finance · Compliance · Strategy · Sales · Sustainability · Research · Real Estate · Healthcare · Security

Quick start

Option 1 — Direct HTTP (MCP Streamable HTTP)

# Free tier: get a key at https://hub.gapup.io/agents-api/onboard
export GAPUP_API_KEY=gpk_your_free_key

curl -X POST https://mcp.gapup.io/mcp \
  -H "Content-Type: application/json" \
  -H "Accept: application/json, text/event-stream" \
  -H "x-api-key: $GAPUP_API_KEY" \
  -d '{
    "jsonrpc": "2.0",
    "method": "tools/call",
    "id": 1,
    "params": {
      "name": "industry_classifier_naics_sic",
      "arguments": {
        "company_description": "Maritime freight forwarder, reefer containers, intra-EU",
        "company_name": "Helios Cold Chain"
      }
    }
  }'

Option 2 — Smithery CLI

npm install -g @smithery/cli
smithery auth login
smithery mcp add gapup-team/gapup-mcp

Option 3 — Claude Desktop / Cursor / Windsurf / etc.

Add to your MCP config (see docs/CLIENTS.md for all 30+ supported clients):

{
  "mcpServers": {
    "gapup": {
      "type": "http",
      "url": "https://mcp.gapup.io/mcp",
      "headers": {
        "x-api-key": "gpk_your_free_key"
      }
    }
  }
}

Option 4 — TypeScript SDK example

See client/example.ts.

Pricing

Tier$ USDExamples
T0$0.002FX lookups, simple commodity prices
T1$0.05Industry classifier, pentest scope estimator
T2$0.10Domain tech fingerprint, market sizing
T3$0.15Attack surface, SEC filings, sanctions multi
T4$0.20Real estate deal screener, clinical evidence, KYC, AI Act audit
T5$0.30Competitive deep dive flagship
T6$1.50Async batch (bulk KYC, AI governance full report)

Free tier: 100 calls/month total across all tiers. No credit card.

Full details: docs/PRICING.md.

Architecture (high-level)

agent ─→ mcp.gapup.io  ─→  Cluster PM2 (2 instances, Cerebras-backed for agent mode)
              │              │
              │              └─→ Fly.io edges (fra/sin/gru) for global low-latency
              │
              └─→ Cloudflare WAF + rate-limit + cache

Full architecture: docs/ARCHITECTURE.md.

Observability

  • Sentry (errors + perf + breadcrumbs + x402 caller identification)
  • Health endpoint with LLM providers status + circuit breakers
  • Cloudflare access logs
  • /__metrics endpoint (rate-limit-aware)

Distribution

Listed on (verified live):

  • Smithery — smithery.ai/servers/gapup-team/gapup-mcp
  • Glama — glama.ai/mcp/servers/getgapup/gapup-mcp
  • MCP Registry officiel — io.github.getgapup/gapup-mcp (also feeds GitHub MCP Registry, Augment Code Discovery, …)
  • abordage/awesome-mcp — Compliance & Regulatory section
  • PulseMCP, mcp.so, mcp.directory, Cline MCP Marketplace, MCP Server Finder, MintMCP — submitted, indexation pending
  • 6 awesome-list PRs open — punkpeye × 2, xpaysh × 2, rohitg00, TensorBlock
  • Bazaar / x402.org coming post-LLC (mid-June 2026)

License & usage

The contents of THIS repository (manifests, docs, SDK examples, governance files) are licensed under MIT — you can fork, translate, reuse the snippets, contribute back.

The hosted API at mcp.gapup.io is governed separately by the Gapup Terms of Service. The MIT grant does NOT cover commercial API usage at scale — that's a per-call x402 settlement.

The server implementation itself is private (closed-source). This repository contains zero server source code — only the public surface (manifests + docs + examples) that lets clients integrate with the hosted endpoint.

Support

  • Email: agents@gapup.io
  • Issues: GitHub Issues
  • Docs: hub.gapup.io/agents-api

Built with

Claude Code · TypeScript · MCP SDK · x402 protocol · Cerebras + Mistral + Anthropic


© 2026 Gapup. All rights reserved.

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Categories
AI & LLM Tools
Registryactive
TransportHTTP
UpdatedJun 4, 2026
View on GitHub

Related AI & LLM Tools MCP Servers

View all →
SkillFM LLM Cost Optimizer

io.github.ericm1018/skillfm-llm-cost-optimizer-openai-anthropic-usage

LLM cost optimizer for OpenAI, Anthropic, token usage, BYOK, and SkillFM Beacon audits.
Llm Orchestration Agent

io.github.mikerawsonnz/llm-orchestration-agent

Run a prompt through a LangChain (system + human) chain over Gemini on Vertex AI; optional LangSmith
Authenticated Llm Agent

io.github.mikerawsonnz/authenticated-llm-agent

JWT-gated LLM gateway: authenticate (bcrypt/JWT), then run a LangChain-on-Vertex Gemini completion.
Copilot Memory MCP

labforgedev/copilot-memory-mcp

Persistent semantic memory for AI agents using local ChromaDB vector search. No cloud required.
1
Agent Prompt Injection Firewall Mcp

csoai-org/agent-prompt-injection-firewall-mcp

The WAF for agents. Pattern-based + heuristic firewall scans prompts, RAG documents, tool argume...
Authenticated Multi Llm Agent

io.github.mikerawsonnz/authenticated-multi-llm-agent

Google-OAuth-gated LLM gateway: verify a Google ID token, then run a Gemini (Vertex AI) completion f