UTCP Tools Bridge
A universal MCP server that exposes all UTCP-registered tools to MCP clients while providing a web interface for tool management.
What is UTCP Tools Bridge?
UTCP Tools Bridge is a Model Context Protocol (MCP) server that allows AI assistants like Claude, Cursor, and VS Code to universal mcp server that exposes all utcp-registered tools to mcp clients while providing a web interface for tool management.
A universal MCP server that exposes all UTCP-registered tools to MCP clients while providing a web interface for tool management.
This server falls under the Developer Tools category on MCPgee, the world's largest MCP server directory with 33,000+ servers.
Features
- A universal MCP server that exposes all UTCP-registered tool
Use Cases
Maintainer
Works with
Installation
NPM
npx -y @utcp/mcp-bridgeManual Installation
npx -y @utcp/mcp-bridgeConfiguration
Configuration Details
claude_desktop_config.json
Performance
Response Metrics
Resource Usage
How to Set Up and Use UTCP Tools Bridge
UTCP-MCP Bridge is a universal MCP server that exposes any tool registered in the Universal Tool Calling Protocol (UTCP) ecosystem to MCP clients like Claude. It acts as a translation layer, letting you define HTTP endpoints, OpenAPI specs, and other API sources in a .utcp_config.json file, then consume all of them from a single MCP server entry. A built-in web interface provides tool management so you can register, deregister, search, and inspect tools without editing config files manually.
Prerequisites
- Node.js with npx available (no global install needed — npx handles it)
- A .utcp_config.json file defining the tools and API endpoints you want to expose
- The absolute path to your .utcp_config.json file for the UTCP_CONFIG_FILE env var
- An MCP-compatible client such as Claude Desktop or Claude Code
Create your UTCP config file
Create a .utcp_config.json file that defines your tool sources. This file specifies manual call templates (HTTP endpoints, OpenAPI specs), environment variable sources, post-processing rules, and tool repository settings.
{
"load_variables_from": [".env"],
"manual_call_templates": [
{
"type": "http",
"name": "my-api",
"base_url": "https://api.example.com"
}
],
"tool_repository": { "type": "memory" }
}Add to your MCP client configuration
Register the UTCP bridge in your MCP client config. Set the UTCP_CONFIG_FILE env var to the absolute path of your config file. The bridge is launched via npx.
{
"mcpServers": {
"utcp": {
"command": "npx",
"args": ["@utcp/mcp-bridge"],
"env": {
"UTCP_CONFIG_FILE": "/absolute/path/to/.utcp_config.json"
}
}
}
}Add via Claude Code CLI (alternative)
If you are using Claude Code, you can add the server using the CLI directly with the claude mcp add-json command.
claude mcp add-json --scope user utcp '{"type":"stdio","command":"npx","args":["@utcp/mcp-bridge"],"env":{"UTCP_CONFIG_FILE":"/absolute/path/to/.utcp_config.json"}}'Restart your MCP client
Restart Claude Desktop or reload your MCP client configuration. The bridge will read your UTCP config and register all defined tools on startup.
Use the web interface for tool management
The bridge provides a built-in web interface for registering and deregistering UTCP manuals, searching available tools, and inspecting tool schemas without editing the config file.
UTCP Tools Bridge Examples
Client configuration
Claude Desktop MCP config for the UTCP bridge, with the required UTCP_CONFIG_FILE environment variable pointing to your config.
{
"mcpServers": {
"utcp": {
"command": "npx",
"args": ["@utcp/mcp-bridge"],
"env": {
"UTCP_CONFIG_FILE": "/Users/you/.utcp_config.json"
}
}
}
}Prompts to try
Example prompts for working with tools registered through the UTCP bridge.
- "List all tools currently registered in the UTCP bridge"
- "What environment variables does the my-api tool require?"
- "Execute the search tool from my OpenLibrary UTCP manual with query 'climate change'"
- "Register a new UTCP manual from https://api.example.com/openapi.json"
- "Show me the schema for the create-issue tool"Troubleshooting UTCP Tools Bridge
Bridge starts but no tools are available in the MCP client
Check that UTCP_CONFIG_FILE is set to the absolute path of your .utcp_config.json and the file is valid JSON. Run npx @utcp/mcp-bridge directly in a terminal with the env var set to see any startup errors.
HTTP tool calls fail with authentication errors
Specify your API credentials in the load_variables_from section pointing to a .env file, or set the required environment variables directly in the env block of your MCP client config. The bridge resolves env variables referenced in tool definitions at call time.
UTCP_CONFIG_FILE not found error on startup
Ensure the path in UTCP_CONFIG_FILE is absolute (starting with / on Unix or C:\ on Windows), not relative. Relative paths are resolved against the process working directory which may not be your home directory.
Frequently Asked Questions about UTCP Tools Bridge
What is UTCP Tools Bridge?
UTCP Tools Bridge is a Model Context Protocol (MCP) server that universal mcp server that exposes all utcp-registered tools to mcp clients while providing a web interface for tool management. It connects AI assistants to external tools and data sources through a standardized interface.
How do I install UTCP Tools Bridge?
Install via npm with the command: npx -y @utcp/mcp-bridge. Then add the server configuration to your AI client's JSON config file (e.g., claude_desktop_config.json or .cursor/mcp.json).
Which AI clients work with UTCP Tools Bridge?
UTCP Tools Bridge works with all major MCP-compatible AI clients including Claude Desktop, Claude Code, Cursor, VS Code (GitHub Copilot), Windsurf, and Cline.
Is UTCP Tools Bridge free to use?
Yes, UTCP Tools Bridge is open source and available under the MIT License license. You can use it freely in both personal and commercial projects.
UTCP Tools Bridge Alternatives — Similar Developer Tools Servers
Looking for alternatives to UTCP Tools Bridge? Here are other popular developer tools servers you can use with Claude, Cursor, and VS Code.
Ecc
★ 188.2kThe agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.
Javaguide
★ 155.8kJava 面试 & 后端通用面试指南,覆盖计算机基础、数据库、分布式、高并发、系统设计与 AI 应用开发
Gemini CLI
★ 104.5kA secure MCP server that wraps the Google Gemini CLI, allowing clients to query Gemini models using local OAuth sessions without requiring an API key. It provides tools for model interaction and diagnostics with built-in protection against command in
Awesome MCP Servers
★ 87.3k⭐ Curated list of Model Context Protocol (MCP) servers - tools that extend Claude Desktop, Cursor, Windsurf, and other MCP clients with custom capabilities.
MCP Servers
★ 86.0kModel Context Protocol Servers
CC Switch
★ 77.5kA cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Gemini CLI & Hermes Agent. Only official website: ccswitch.io
Browse More Developer Tools MCP Servers
Explore all developer tools servers available in the MCPgee directory. Each server includes setup guides for Claude, Cursor, and VS Code.
Set Up UTCP Tools Bridge in Your Editor
Choose your AI client for step-by-step setup instructions.
Quick Config Preview
Add this to your claude_desktop_config.json or .cursor/mcp.json
Ready to use UTCP Tools Bridge?
Browse our complete directory of 33,000+ MCP servers, read setup guides for your editor, and start building with the Model Context Protocol.