MCP Catalogs
Homeutcp-mcp screenshot

utcp-mcp

by universal-tool-calling-protocol·198·Score 49

A universal MCP bridge that connects AI agents to any native endpoint via UTCP with zero installation required.

developer-toolsproductivityai-llm
22
Forks
1
Open issues
this month
Last commit
2d ago
Indexed

Overview

UTCP-MCP Bridge is a comprehensive MCP server that serves as a universal interface between AI agents and native endpoints. It transforms UTCP (Universal Tool Calling Protocol) manuals into MCP tools, allowing seamless integration with any MCP client including Claude Desktop and Claude Code. The bridge dynamically loads configurations from a JSON file, supports HTTP APIs, command-line tools, and file processing, making it highly versatile for various automation and integration scenarios.

Try asking AI

After installing, here are 5 things you can ask your AI assistant:

you:Integrate custom APIs and services with Claude Desktop without writing MCP servers
you:Create unified tool management interface for various automation workflows
you:Enable dynamic tool registration for different projects with isolated environments
you:What is UTCP?
you:Do I need to install the bridge?

When to choose this

Choose UTCP-MCP when you need to connect AI agents to diverse APIs and tools without writing custom MCP implementations, especially when working across multiple environments.

When NOT to choose this

Avoid if you need strict authentication and security controls, as the current implementation appears limited in enterprise-grade security features.

Tools this server exposes

7 tools extracted from the README
  • register_manual

    Register new UTCP manuals/APIs

  • deregister_manual

    Remove registered manuals

  • call_tool

    Execute any registered UTCP tool

  • search_tools

    Find tools by description

  • list_tools

    List all registered tool names

  • get_required_keys_for_tool

    Get required environment variables

  • tool_info

    Get complete tool information and schema

Comparable tools

npx-mcp-servertool-use-mcpnative-mcpmcp-server-template

Installation

Installation

Add this configuration to your MCP client (Claude Desktop, etc.):

{
  "mcpServers": {
    "utcp": {
      "command": "npx",
      "args": ["@utcp/mcp-bridge"],
      "env": {
        "UTCP_CONFIG_FILE": "/path/to/your/.utcp_config.json"
      }
    }
  }
}

For Claude Code (CLI):

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

FAQ

What is UTCP?
UTCP (Universal Tool Calling Protocol) is a protocol that allows connecting to any API via HTTP, OpenAPI specs, or custom formats, using command-line tools with automatic argument parsing, and processing text and files with built-in utilities.
Do I need to install the bridge?
No installation is required. The bridge works via npx and will automatically download and run the latest version when invoked.

Compare utcp-mcp with

GitHub →

Last updated · Auto-generated from public README + GitHub signals.