mcp-bridge

Execute MCP tool commands via a code execution bridge.

Updated Aug 27, 2026
One-click install
npx skills add https://github.com/cdrury526/Mangetagent-Agents --skill mcp-bridge
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: mcp-bridge
Source: https://github.com/cdrury526/Mangetagent-Agents/tree/main/.claude/skills/mcp-bridge
Command: npx skills add https://github.com/cdrury526/Mangetagent-Agents --skill mcp-bridge

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill enables context-efficient access to MCP tools by launching a bridge that discovers and executes MCP commands via API, avoiding the need to preload all tool definitions into memory. It supports database operations and component management without Docker or full server setup.

Core Features & Use Cases

  • API-based MCP access: Run commands against Supabase and shadcn tools without loading every tool into context.
  • Database operations via API: Query, insert, update, and delete data through REST-like endpoints.
  • Component management: Discover and install shadcn components on demand.
  • Low-ego startup: Works with MCP servers disabled or unavailable, saving setup time.

Quick Start

Start the MCP bridge server and run a sample command, e.g. npm run mcp -- run supabase list-users '{"page":1,"per_page":10}'

Frequently Asked Questions about mcp-bridge

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I execute MCP tools without preloading all tool definitions into context?

MCP bridge launches an API server that discovers and executes MCP commands on demand, avoiding memory overhead. Run commands against Supabase and shadcn tools via REST-like endpoints without loading every tool definition upfront, reducing latency and context usage.

Can I query and modify database data through MCP without Docker setup?

Yes. MCP bridge performs database operations—query, insert, update, delete—through API endpoints without requiring Docker or full server infrastructure. Start the bridge with `npm run mcp` to access Supabase operations immediately.

What's the fastest way to discover and install shadcn components on demand?

MCP bridge registers shadcn component tools and executes discovery and installation commands via API. Request components dynamically without preloading the full component registry, enabling low-latency component management.

Do I need MCP servers running to automate tool execution?

No. MCP bridge works with MCP servers disabled or unavailable, providing a low-ego startup path. It bridges CLI and API tool execution independently, so automation runs without full server setup.

How does MCP bridge validate and structure tool input?

Input validation uses TypeScript schemas to enforce correct parameters before execution. Tool metadata is structured and auditable, ensuring consistent input validation across all registered tools and execution contexts.