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.
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:
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 READMEregister_manualRegister new UTCP manuals/APIs
deregister_manualRemove registered manuals
call_toolExecute any registered UTCP tool
search_toolsFind tools by description
list_toolsList all registered tool names
get_required_keys_for_toolGet required environment variables
tool_infoGet complete tool information and schema
Comparable tools
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
Last updated · Auto-generated from public README + GitHub signals.