Esta página se muestra en inglés. Una traducción al español está en curso.
MCP ConfigsMay 12, 2026·3 min de lectura

mcp-bridgekit — MCP stdio-to-HTTP Bridge + Dashboard

Expose any MCP stdio server as HTTP endpoints for web apps, with per-user session pooling and background jobs to survive 30s timeouts (Vercel/Cloudflare).

Listo para agents

Este activo puede ser leído e instalado directamente por agents

TokRepo expone un comando CLI universal, contrato de instalación, metadata JSON, plan según adaptador y contenido raw para que los agents evalúen compatibilidad, riesgo y próximos pasos.

Native · 94/100Política: permitir
Superficie agent
Cualquier agent MCP/CLI
Tipo
Mcp
Instalación
Docker
Confianza
Confianza: Established
Entrada
docker run -d -p 8000:8000 mcp-bridgekit
Comando CLI universal
npx tokrepo install db3b874d-1ff7-591b-ba3f-d025d44c25f2
Introducción

MCP BridgeKit solves the stdio/HTTP mismatch: it runs MCP servers as subprocesses and makes them callable from browsers and web backends, while providing a live dashboard for sessions and jobs.

Best for: Web chatbots that need MCP tools, multi-tenant tool access, and long-running tool calls

Works with: Python 3.11+; Redis for jobs/sessions (README mentions Redis); deployable to Vercel

Setup time: 20–40 minutes

Key facts (verified)

  • README table cites 30s gateway timeouts (Vercel/Cloudflare) and uses background jobs to handle slow tool calls.
  • Supports session pooling and notes “up to 100 concurrent” sessions in README problem table.
  • GitHub: 60 stars · 14 forks; pushed 2026-02-23 (GitHub API verified).

Main

If you’re turning MCP tools into a product surface, BridgeKit helps with three hard parts:

  • Isolation: run per-user sessions so one customer’s tool state can’t bleed into another’s.
  • Timeouts: turn slow calls into queued jobs; return a job id and let the client poll/stream status.
  • Ops: use the dashboard to observe active sessions, job backlog, and tool inventory during incidents.

README excerpt (verbatim)

MCP BridgeKit

Embeddable MCP stdio → HTTP bridge for web chatbots.

Turn any MCP stdio server into HTTP endpoints your web app can call. Per-user session pooling, real timeout handling with background job fallback, live dashboard.

Version MIT Python

Deploy with Vercel


Table of Contents


What Is MCP BridgeKit?

MCP (Model Context Protocol) is an open standard that lets AI applications connect to external tools and data sources. MCP servers communicate over stdio (stdin/stdout) — which means they run as local subprocesses and speak JSON-RPC over pipes.

The problem: Web applications (React, Next.js, Vue, mobile apps) can't spawn local subprocesses. They only speak HTTP. There's a protocol mismatch.

MCP BridgeKit is the bridge. It sits between your web app and MCP stdio servers, translating HTTP requests into stdio subprocess calls and streaming results back:

Your Web App  ──HTTP──▶  MCP BridgeKit  ──stdio──▶  MCP Server (tool)
                         (this project)

FAQ

Q: Why not call MCP tools directly from the browser? A: Browsers can’t spawn stdio subprocesses; BridgeKit bridges HTTP ↔ stdio.

Q: What about slow tools? A: README describes background-job fallback to avoid 30s gateway timeouts.

Q: How do I discover tools? A: README mentions a live GET /tools/{user_id} endpoint for discovery.

🙏

Fuente y agradecimientos

Source: https://github.com/mkbhardwas12/mcp-bridgekit > License: MIT > GitHub stars: 60 · forks: 14

Discusión

Inicia sesión para unirte a la discusión.
Aún no hay comentarios. Sé el primero en compartir tus ideas.

Activos relacionados