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

Gpu Bridge

gpu-bridge/mcp-server
5 toolsauthSTDIOregistry active
Summary

Connects Claude to 30 GPU-powered AI services through a unified inference API. You get LLM calls, FLUX and Stable Diffusion image generation, Whisper transcription, text-to-speech, embeddings, reranking, and video generation all through a single `gpu_run` tool. Supports both traditional API key auth and x402 protocol for autonomous agent payments with USDC on Base L2. Pricing starts at fractions of a cent per request with volume discounts. Useful when you need Claude to generate images mid-conversation, transcribe audio files, or chain together multiple AI capabilities without switching between providers. Install via npx with your GPU-Bridge API key in the config.

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 →

Tools

Public tool metadata for what this MCP can expose to an agent.

5 tools
gpu_runRun any GPU-Bridge AI service. 30 services available: LLM inference (sub-second), image generation (FLUX, SD3.5), video generation, video enhancement (up to 4K), speech-to-text (Whisper, <1s), TTS (40+ voices), music generation, voice cloning, embeddings, document reranking (J...3 params

Run any GPU-Bridge AI service. 30 services available: LLM inference (sub-second), image generation (FLUX, SD3.5), video generation, video enhancement (up to 4K), speech-to-text (Whisper, <1s), TTS (40+ voices), music generation, voice cloning, embeddings, document reranking (J...

Parameters* required
inputobject
Service-specific input. Examples: LLM {"prompt":"...","max_tokens":512}, Image {"prompt":"..."}, Whisper {"audio_url":"https://..."}
servicestring
Service key. Common ones: llm-4090 (text), image-4090 (image), whisper-l4 (speech-to-text), tts-l4 (text-to-speech), embedding-l4 (embeddings), rerank (document reranking), pdf-parse (document parsing), nsfw-detect (content moderation), video-enhance (video upscaling)
prioritystring
Routing priority. "fast" = lowest latency (default), "cheap" = lowest cost.one of fast · cheap
gpu_catalogList all available GPU-Bridge services with pricing and model info.

List all available GPU-Bridge services with pricing and model info.

No parameter schema in public metadata yet.

gpu_statusCheck the status of a GPU-Bridge job and retrieve results.1 params

Check the status of a GPU-Bridge job and retrieve results.

Parameters* required
job_idstring
The job ID returned by gpu_run
gpu_balanceCheck GPU-Bridge credit balance, daily spend, and volume discount tier.

Check GPU-Bridge credit balance, daily spend, and volume discount tier.

No parameter schema in public metadata yet.

gpu_estimateEstimate the cost of a GPU-Bridge service before running it.2 params

Estimate the cost of a GPU-Bridge service before running it.

Parameters* required
secondsnumber
Estimated runtime in seconds (optional)
servicestring
Service key (e.g. llm-4090, image-4090)

GPU-Bridge MCP Server

30 GPU-powered AI services as MCP tools — LLMs, image generation, audio, video, embeddings, reranking, PDF parsing, NSFW detection & more. x402 native for autonomous AI agents: pay per request on-chain with USDC on Base L2. No API keys. No accounts.

npm version License: MIT MCP Compatible

What is GPU-Bridge?

GPU-Bridge is a unified GPU inference API with native x402 support — the open payment protocol that allows AI agents to autonomously pay for compute with USDC on Base L2. No API keys, no accounts, no human intervention required.

This MCP server exposes all 30 GPU-Bridge services as Model Context Protocol tools, giving Claude (and any MCP-compatible AI) direct access to GPU inference.


Install in Claude Desktop (2 minutes)

1. Get your API key (or use x402 for autonomous agents)

Visit gpubridge.io and grab a free API key, or use the x402 protocol for keyless agent payments.

2. Add to claude_desktop_config.json

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json Windows: %APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "gpu-bridge": {
      "command": "npx",
      "args": ["-y", "@gpu-bridge/mcp-server"],
      "env": {
        "GPUBRIDGE_API_KEY": "your_api_key_here"
      }
    }
  }
}

3. Restart Claude Desktop

That's it. Claude now has access to 30 GPU-powered AI services.


MCP Tools

gpu_run

Run any GPU-Bridge service. The primary tool for executing AI tasks.

Parameters:
  service  (string)  — Service key (e.g., "llm-4090", "flux-schnell", "whisper-l4")
  input    (object)  — Service-specific input parameters
  priority (string)  — Optional: "fast" (lowest latency) or "cheap" (lowest cost)

gpu_catalog

Get the full catalog of available services with pricing and capabilities.

gpu_estimate

Estimate cost before running a service. No authentication required.

gpu_status

Check the status of a job and retrieve results.

gpu_balance

Check your current balance, daily spend, and volume discount tier.


30 Available Services

Language Models (LLMs)

Service IDDescriptionNotes
llm-4090General purpose LLMSub-second via Groq
llm-a100Maximum capability LLMLargest models
llm-l4Ultra-fast, low cost LLMBudget option
code-4090Code generationOptimized for code
llm-streamStreaming LLM responsesReal-time output

Image Generation

Service IDDescriptionNotes
flux-schnellFLUX.1 SchnellFast, 4-step generation
flux-devFLUX.1 DevHigh quality
sdxl-4090Stable Diffusion XLVersatile
sd35-l4Stable Diffusion 3.5Latest SD model
img2img-4090Image-to-imageStyle transfer, editing

Vision & Image Analysis

Service IDDescriptionNotes
llava-4090Visual Q&AImage understanding
ocr-l4Text extraction (OCR)Multi-language
rembg-l4Background removalInstant
caption-4090Image captioningAuto-describe images
nsfw-detectContent moderationNSFW classification

Speech-to-Text

Service IDDescriptionNotes
whisper-l4Fast transcriptionSub-second
whisper-a100High accuracy transcriptionLarge files
diarize-l4Speaker diarizationWho said what

Text-to-Speech

Service IDDescriptionNotes
tts-l4Voice cloning TTS40+ voices
tts-fastUltra-fast TTSLowest latency
bark-4090Expressive TTSEmotion, laughter

Audio Generation

Service IDDescriptionNotes
musicgen-l4Music generationText-to-music
audiogen-l4Sound effectsText-to-SFX

Embeddings & Search

Service IDDescriptionNotes
embed-l4Text embeddingsMultilingual
embed-codeCode embeddingsFor code search
rerankDocument rerankingJina, sub-second

Video

Service IDDescriptionNotes
animatediffText-to-videoAnimateDiff
video-enhanceVideo upscalingUp to 4K

Utilities

Service IDDescriptionNotes
pdf-parseDocument parsingPDF/DOCX to text

x402: For Autonomous AI Agents

GPU-Bridge supports the x402 payment protocol, enabling truly autonomous AI agents to pay for compute without human intervention.

Agent Request → GPU-Bridge returns HTTP 402 Payment Required
      ↓
Agent pays USDC on Base L2 (gas < $0.01, settles in 2s)
      ↓
Agent retries with payment proof → GPU-Bridge executes and returns result

Python Example with x402

from x402.client import PaymentClient

client = PaymentClient(private_key="0x...", chain="base")

response = client.request(
    "POST",
    "https://api.gpubridge.io/v1/run",
    json={
        "service": "flux-schnell",
        "input": {"prompt": "A robot painting on a canvas", "steps": 4}
    }
)
print(response.json())

Pricing

CategoryStarting From
LLMs$0.003/1K tokens
Image Generation$0.01/image
Speech-to-Text$0.005/minute
Text-to-Speech$0.005/1K chars
Embeddings$0.0001/1K tokens
Reranking$0.001/query
PDF Parsing$0.005/document

All prices in USD. x402 payments in USDC on Base L2.


Links

  • Website: gpubridge.io
  • Docs: gpubridge.io/docs
  • Catalog: gpubridge.io/catalog
  • GitHub: github.com/gpu-bridge
  • npm: @gpu-bridge/mcp-server

License

MIT © Healthtech Capital LLC

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 →

Configuration

GPUBRIDGE_API_KEYsecret

GPU-Bridge API key (get one at https://gpubridge.io). Starts with gpub_. Optional if using x402 micropayments.

Categories
AI & LLM ToolsMedia & Entertainment
Registryactive
Package@gpu-bridge/mcp-server
TransportSTDIO
AuthRequired
UpdatedMar 16, 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