UTCP Tools Bridge

v1.1.0Developer Toolsstable

A universal MCP server that exposes all UTCP-registered tools to MCP clients while providing a web interface for tool management.

aiai-agentdeveloper-toolsllmmcp
Share:
198
Stars
0
Downloads
0
Weekly
0/5

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

Expose UTCP tools to MCP clients
Tool management web interface
Universal tool connectivity
LicenseMIT License
Languagepython
Versionv1.1.0
UpdatedMay 7, 2026
Statushealthy
Maintenanceactive

Works with

ClaudeOpenAIwindowsmacoslinux

Installation

NPM

npx -y @utcp/mcp-bridge

Manual Installation

npx -y @utcp/mcp-bridge

Configuration

Configuration Details

Config File

claude_desktop_config.json

Performance

Response Metrics

Response Time< 200ms
ThroughputMedium

Resource Usage

Memory UsageLow
CPU UsageLow

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
1

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" }
}
2

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"
      }
    }
  }
}
3

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"}}'
4

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.

5

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.

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.

Quick Config Preview

{ "mcpServers": { "utcp-mcp-bridge": { "command": "npx", "args": ["-y", "@utcp/mcp-bridge"] } } }

Add this to your claude_desktop_config.json or .cursor/mcp.json

Read the full setup guide →

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.

33,000+ ServersFree & Open SourceStep-by-Step Guides