Skip to main content
Glama

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.


Related MCP server: hive-mcp-compute

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 ID

Description

Notes

llm-4090

General purpose LLM

Sub-second via Groq

llm-a100

Maximum capability LLM

Largest models

llm-l4

Ultra-fast, low cost LLM

Budget option

code-4090

Code generation

Optimized for code

llm-stream

Streaming LLM responses

Real-time output

Image Generation

Service ID

Description

Notes

flux-schnell

FLUX.1 Schnell

Fast, 4-step generation

flux-dev

FLUX.1 Dev

High quality

sdxl-4090

Stable Diffusion XL

Versatile

sd35-l4

Stable Diffusion 3.5

Latest SD model

img2img-4090

Image-to-image

Style transfer, editing

Vision & Image Analysis

Service ID

Description

Notes

llava-4090

Visual Q&A

Image understanding

ocr-l4

Text extraction (OCR)

Multi-language

rembg-l4

Background removal

Instant

caption-4090

Image captioning

Auto-describe images

nsfw-detect

Content moderation

NSFW classification

Speech-to-Text

Service ID

Description

Notes

whisper-l4

Fast transcription

Sub-second

whisper-a100

High accuracy transcription

Large files

diarize-l4

Speaker diarization

Who said what

Text-to-Speech

Service ID

Description

Notes

tts-l4

Voice cloning TTS

40+ voices

tts-fast

Ultra-fast TTS

Lowest latency

bark-4090

Expressive TTS

Emotion, laughter

Audio Generation

Service ID

Description

Notes

musicgen-l4

Music generation

Text-to-music

audiogen-l4

Sound effects

Text-to-SFX

Service ID

Description

Notes

embed-l4

Text embeddings

Multilingual

embed-code

Code embeddings

For code search

rerank

Document reranking

Jina, sub-second

Video

Service ID

Description

Notes

animatediff

Text-to-video

AnimateDiff

video-enhance

Video upscaling

Up to 4K

Utilities

Service ID

Description

Notes

pdf-parse

Document parsing

PDF/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

Category

Starting 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.



License

MIT © Healthtech Capital LLC

Available Tools

5 tools
gpu_balanceA

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

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A3.5/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations provided, so description carries full burden. Lists four specific data categories returned (good), but omits operational details: no mention of authentication requirements, rate limits, pagination for job history, or whether data is real-time vs cached.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Single sentence, front-loaded with action verb. No filler words. Every clause specifies a distinct data category returned. Optimal density.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a parameterless account-query tool without output schema, listing the four return data categories provides adequate completeness. Missing only operational metadata (Auth, TTL) which would be nice-to-have but not critical for this complexity level.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Zero parameters present per schema. With no parameters to document, baseline score applies.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

Specific verb 'Check' and concrete resources listed (credit balance, daily spend, volume discount tier, job history). While distinct from siblings (gpu_run, gpu_status, etc.) by nature of the data, the description does not explicitly differentiate usage scopes in text.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No explicit guidance on when to use this versus siblings (e.g., 'Check this before running jobs with gpu_run' or 'For current job status use gpu_status'). Lacks prerequisites or conditional logic.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

gpu_catalogA

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

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations provided, so description carries full disclosure burden. It successfully reveals authentication requirements and return data categories (pricing, model info). Missing operational details like rate limits, caching behavior, or pagination for large catalogs.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences total with zero waste. Front-loaded with primary purpose ('List all available...'), followed by critical behavioral constraint ('No authentication required'). Every word earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Appropriately complete for a simple catalog tool. Mentions return data content (pricing/model info) to compensate for missing output schema. Could be improved by indicating return format (array vs object) or pagination behavior.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Zero parameters present, meeting the baseline score of 4 per rubric. Description appropriately focuses on behavioral semantics and return data rather than inventing parameter documentation where none exist.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Clear specific verb 'List' with resource 'GPU-Bridge services' and scope details 'pricing and model info'. Effectively distinguishes from operational siblings (gpu_run, gpu_balance) by positioning as a catalog/browse function.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

States 'No authentication required' which provides a usage constraint, implying when it can be called safely. However, lacks explicit when-to-use guidance relative to siblings (e.g., 'use before gpu_run to select a model') or exclusion criteria.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

gpu_estimateA

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

ParametersJSON Schema
NameRequiredDescriptionDefault
serviceYesService key (e.g. llm-4090, image-4090)
secondsNoEstimated runtime in seconds (optional)

TDQS

A3.9/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations provided, so description carries full disclosure burden. It successfully adds the authentication requirement (no auth needed) which annotations would typically cover. However, missing: idempotency, rate limits, what the estimate returns (format/currency), and error behaviors for invalid service keys.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences, zero waste. First establishes purpose and timing relative to execution; second states auth requirement. Every word earns its place. Well front-loaded with action verb leading.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Tool has simple 2-parameter schema with full coverage, but no output schema exists. Description fails to specify what the estimate returns (numeric value? object? currency units?). Given no annotations and no output schema, the description should have disclosed return format. Adequate but with clear gaps.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% with clear descriptions and examples (e.g., 'llm-4090'). Description does not need to repeat parameter definitions per calibration guidelines. Baseline 3 is appropriate as description adds no parameter syntax beyond schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Description uses specific verb 'Estimate' with resource 'cost' and scope 'GPU-Bridge service'. The phrase 'before running it' clearly distinguishes this from sibling gpu_run, implying this is a pre-flight check.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

States 'before running it' implying workflow order (use this prior to gpu_run). Explicitly notes 'No authentication required' which is a critical usage constraint. However, does not explicitly name gpu_run as the alternative or describe when NOT to use it (e.g., when you need actual execution).

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

gpu_runA

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 (Jina), OCR, PDF/document parsing, NSFW detection, image captioning, visual Q&A, background removal, face restoration, upscaling, stickers, and more. Use gpu_catalog to see all available services.

ParametersJSON Schema
NameRequiredDescriptionDefault
serviceYesService key. Common ones: llm-4090 (text), image-4090 (image), video (video), whisper-l4 (speech-to-text), tts-l4 (text-to-speech), embedding-l4 (embeddings), rembg-l4 (bg removal), upscale-l4 (upscale), ocr (text extraction), caption (image caption), face-restore, musicgen-l4, llava-4090 (visual Q&A), sticker, whisperx (diarized STT), bark (expressive TTS), voice-clone, photomaker, ad-inpaint, animate, image-variation, inpaint, controlnet, clip, segmentation, rerank (document reranking), nsfw-detect (content moderation), video-enhance (video upscaling), pdf-parse (document parsing)
inputYesService-specific input. Examples: LLM {"prompt":"...","max_tokens":512,"model":"llama-3.3-70b-versatile"}, Image {"prompt":"..."}, Whisper {"audio_url":"https://..."}, TTS {"text":"...","voice":"af_alloy"}, Embedding {"text":"..."}, OCR/Rembg/Upscale/Caption {"image_url":"https://..."}, Video {"prompt":"..."}
priorityNoRouting priority. "fast" = lowest latency (default), "cheap" = lowest cost.

TDQS

A3.8/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations provided, so description carries full burden. Adds valuable performance context ('sub-second', '<1s', 'fast' vs 'cheap' routing) but omits critical operational details: authentication requirements, error handling patterns, cost implications, and whether operations are idempotent or destructive.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Information-dense and front-loaded with main purpose. The exhaustive service list (30 items) is necessary given the tool's polymorphic nature. Ends with actionable sibling reference. Efficient sentence structure with minimal filler.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Complex multi-service tool with nested input objects but no output schema. Description comprehensively covers input capabilities and service types but fails to describe return values, error formats, or rate limiting—critical gaps given the absence of structured output schema.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% with detailed examples (especially for 'input' object's polymorphic structure). Description adds high-level categorization of services but largely overlaps with schema enumerations; does not significantly augment parameter understanding beyond schema documentation.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Clear specific verb (Run) + resource (GPU-Bridge AI service) with explicit scope (30 services). Distinguishes from siblings by directing users to gpu_catalog for discovery while this handles execution.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly directs users to 'use gpu_catalog to see all available services,' establishing clear workflow (catalog for discovery, run for execution). Could strengthen by noting gpu_estimate/balance for cost checking before execution.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

gpu_statusB

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

ParametersJSON Schema
NameRequiredDescriptionDefault
job_idYesThe job ID returned by gpu_run

TDQS

B3.3/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden. It mentions 'retrieve results' indicating output behavior, but omits critical async details: whether this blocks, if repeated polling is expected, result expiration, or what status values (e.g., running, completed, failed) are possible.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Single efficient sentence with no filler. Information is front-loaded (action + subject + outcome). Every word earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Adequate for a single-parameter tool, but lacking given the absence of an output schema. For a status retrieval tool, describing the possible status states or result payload structure would significantly improve completeness.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% with job_id well-documented. The description mentions 'GPU-Bridge job' which loosely contextualizes the parameter, but adds no syntax details, format constraints, or examples beyond what the schema already provides. Baseline 3 is appropriate given high schema coverage.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

Clear verb ('Check') and resource ('GPU-Bridge job'), plus outcome ('retrieve results'). However, it does not explicitly differentiate from siblings like gpu_run or gpu_catalog within the description text, relying instead on the tool name to signal its polling/retrieval role.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Provides no explicit guidance on when to use this tool versus alternatives, or that it requires a job_id from gpu_run first. The schema parameter description mentions it returns job IDs from gpu_run, but the main description lacks usage context.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 5 tool updatesv0.1.0
    • First observedgpu_balance
    • First observedgpu_catalog
    • First observedgpu_estimate
    • First observedgpu_run
    • First observedgpu_status

TDQS

A4/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose with no overlap: balance checking, catalog listing, cost estimation, job execution, and status monitoring. The descriptions make it unambiguous which tool to use for each task, preventing misselection.

Naming Consistency5/5

All tools follow a consistent 'gpu_' prefix with descriptive suffixes (balance, catalog, estimate, run, status). This verb_noun pattern is uniform throughout, making the tool set predictable and easy to navigate.

Tool Count5/5

With 5 tools, this server is well-scoped for its GPU service management purpose. Each tool earns its place by covering essential operations: account management, service discovery, cost estimation, job execution, and status tracking, without being overly sparse or bloated.

Completeness5/5

The tool set provides complete coverage for the GPU service lifecycle: discover services (catalog), estimate costs, run jobs, monitor status, and manage account (balance). No obvious gaps exist; agents can perform end-to-end workflows without dead ends.

Maintenance

ActivityInactive
ResponsivenessSyncing

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • A
    license
    B
    quality
    B
    maintenance
    Connects AI agents to the Base network for onchain data, batch USDC payments, and access to over 200 AI models. It utilizes the x402 protocol to enable pay-per-request functionality using USDC without requiring traditional API keys or accounts.
    100
    53
    2
    MIT
  • A
    license
    Not graded
    quality
    C
    maintenance
    OpenAI-compatible inference broker that routes AI requests to the cheapest qualifying model and settles payments per token in USDC on Base L2 via x402 micropayments.
    MIT
  • F
    license
    Not graded
    quality
    C
    maintenance
    Keyless, pay-per-call AI gateway: 248 LLMs plus image/video/voice/music generation and live crypto, DeFi, markets, web-search and research tools through one MCP server. Pay per call in USDC via x402 on Base/Solana — no API key, no signup, free tier.
    -

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/gpu-bridge/mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server