@gpu-bridge/mcp-server
Advanced tools
+10
| { | ||
| "$schema": "https://glama.ai/mcp/schemas/server.json", | ||
| "maintainers": ["fjnunezp75"], | ||
| "name": "GPU-Bridge MCP Server", | ||
| "description": "Unified GPU inference — 30 AI services via one MCP tool. LLM, image gen, video, speech, vision, document parsing, reranking & more. Pay with USDC (x402) or API key.", | ||
| "homepage": "https://gpubridge.io", | ||
| "license": "MIT", | ||
| "categories": ["ai", "inference", "developer-tools"], | ||
| "keywords": ["gpu", "ai", "inference", "llm", "image-generation", "video", "x402", "embeddings", "rag", "mcp"] | ||
| } |
+1
-1
@@ -9,3 +9,3 @@ #!/usr/bin/env node | ||
| } from "@modelcontextprotocol/sdk/types.js"; | ||
| var API_BASE = process.env.GPUBRIDGE_URL || "https://api.gpubridge.xyz"; | ||
| var API_BASE = process.env.GPUBRIDGE_URL || "https://api.gpubridge.io"; | ||
| var API_KEY = process.env.GPUBRIDGE_API_KEY || ""; | ||
@@ -12,0 +12,0 @@ var server = new Server( |
+37
-11
| { | ||
| "name": "@gpu-bridge/mcp-server", | ||
| "version": "2.3.0", | ||
| "mcpName": "io.github.fjnunezp75/gpu-bridge", | ||
| "description": "GPU-Bridge MCP Server — 30 AI services as MCP tools. LLM, image, video, audio, embeddings, reranking, PDF parsing, NSFW detection & more. x402 native for autonomous agents.", | ||
| "version": "2.4.0", | ||
| "description": "GPU-Bridge MCP Server \u2014 30 AI services as MCP tools. LLM, image, video, audio, embeddings, reranking, PDF parsing, NSFW detection & more. x402 native for autonomous agents.", | ||
| "type": "module", | ||
| "main": "index.js", | ||
| "bin": { "gpu-bridge-mcp": "index.js" }, | ||
| "files": ["index.js", "README.md", "LICENSE", "smithery.yaml"], | ||
| "keywords": ["mcp", "ai", "gpu", "inference", "llm", "image-generation", "video", "audio", "embeddings", "reranking", "x402", "claude", "model-context-protocol"], | ||
| "author": "GPU-Bridge <hello@gpubridge.xyz>", | ||
| "bin": { | ||
| "gpu-bridge-mcp": "index.js" | ||
| }, | ||
| "files": [ | ||
| "index.js", | ||
| "README.md", | ||
| "LICENSE", | ||
| "glama.json", | ||
| "smithery.yaml" | ||
| ], | ||
| "keywords": [ | ||
| "mcp", | ||
| "ai", | ||
| "gpu", | ||
| "inference", | ||
| "llm", | ||
| "image-generation", | ||
| "video", | ||
| "audio", | ||
| "embeddings", | ||
| "reranking", | ||
| "x402", | ||
| "claude", | ||
| "model-context-protocol" | ||
| ], | ||
| "author": "GPU-Bridge <hello@gpubridge.io>", | ||
| "license": "MIT", | ||
| "homepage": "https://gpubridge.xyz", | ||
| "repository": { "type": "git", "url": "https://github.com/gpu-bridge/mcp-server" }, | ||
| "engines": { "node": ">=18" }, | ||
| "homepage": "https://gpubridge.io", | ||
| "repository": { | ||
| "type": "git", | ||
| "url": "git+https://github.com/gpu-bridge/mcp-server.git" | ||
| }, | ||
| "engines": { | ||
| "node": ">=18" | ||
| }, | ||
| "dependencies": { | ||
| "@modelcontextprotocol/sdk": "^1.27.0" | ||
| } | ||
| } | ||
| } |
+7
-7
@@ -12,3 +12,3 @@ # GPU-Bridge MCP Server | ||
| [GPU-Bridge](https://gpubridge.xyz) 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. | ||
| [GPU-Bridge](https://gpubridge.io) 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. | ||
@@ -23,3 +23,3 @@ 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. | ||
| Visit [gpubridge.xyz](https://gpubridge.xyz) and grab a free API key, or use the x402 protocol for keyless agent payments. | ||
| Visit [gpubridge.io](https://gpubridge.io) and grab a free API key, or use the x402 protocol for keyless agent payments. | ||
@@ -167,3 +167,3 @@ ### 2. Add to `claude_desktop_config.json` | ||
| "POST", | ||
| "https://api.gpubridge.xyz/v1/run", | ||
| "https://api.gpubridge.io/v1/run", | ||
| json={ | ||
@@ -197,5 +197,5 @@ "service": "flux-schnell", | ||
| - **Website:** [gpubridge.xyz](https://gpubridge.xyz) | ||
| - **Docs:** [gpubridge.xyz/docs](https://gpubridge.xyz/docs) | ||
| - **Catalog:** [gpubridge.xyz/catalog](https://gpubridge.xyz/catalog) | ||
| - **Website:** [gpubridge.io](https://gpubridge.io) | ||
| - **Docs:** [gpubridge.io/docs](https://gpubridge.io/docs) | ||
| - **Catalog:** [gpubridge.io/catalog](https://gpubridge.io/catalog) | ||
| - **GitHub:** [github.com/gpu-bridge](https://github.com/gpu-bridge) | ||
@@ -208,2 +208,2 @@ - **npm:** [@gpu-bridge/mcp-server](https://www.npmjs.com/package/@gpu-bridge/mcp-server) | ||
| MIT © [Healthtech Capital LLC](https://gpubridge.xyz) | ||
| MIT © [Healthtech Capital LLC](https://gpubridge.io) |
+17
-17
@@ -1,17 +0,17 @@ | ||
| startCommand: | ||
| type: stdio | ||
| configSchema: | ||
| type: object | ||
| properties: | ||
| GPUBRIDGE_API_KEY: | ||
| type: string | ||
| description: "Your GPU-Bridge API key (get one free at gpubridge.xyz). Starts with gpub_" | ||
| required: [] | ||
| commandFunction: |- | ||
| (config) => ({ | ||
| command: "npx", | ||
| args: ["@gpu-bridge/mcp-server"], | ||
| env: { | ||
| GPUBRIDGE_API_KEY: config.GPUBRIDGE_API_KEY || "" | ||
| } | ||
| }) | ||
| name: gpu-bridge | ||
| displayName: GPU-Bridge | ||
| description: 30 GPU-powered AI services as MCP tools — LLMs, image generation, audio, video, embeddings, reranking, PDF parsing, NSFW detection & more. x402 native for autonomous agents. | ||
| homepage: https://gpubridge.io | ||
| repository: https://github.com/gpu-bridge/mcp-server | ||
| license: MIT | ||
| categories: | ||
| - ai | ||
| - inference | ||
| - image-generation | ||
| - audio | ||
| tools: | ||
| - gpu_run | ||
| - gpu_catalog | ||
| - gpu_estimate | ||
| - gpu_status | ||
| - gpu_balance |
Network access
Supply chain riskThis module accesses the network.
Found 1 instance in 1 package
Environment variable access
Supply chain riskPackage accesses environment variables, which may be a sign of credential stuffing or data theft.
Found 2 instances in 1 package
URL strings
Supply chain riskPackage contains fragments of external URLs or IP addresses, which the package may be accessing at runtime.
Found 1 instance in 1 package
Network access
Supply chain riskThis module accesses the network.
Found 1 instance in 1 package
Environment variable access
Supply chain riskPackage accesses environment variables, which may be a sign of credential stuffing or data theft.
Found 2 instances in 1 package
URL strings
Supply chain riskPackage contains fragments of external URLs or IP addresses, which the package may be accessing at runtime.
Found 1 instance in 1 package
19142
3.54%6
20%236
4.42%