add_mcp_server
Register a new MCP server with the discovery service by providing server name, description, endpoint, and tools list. Enables integration into MCP Router for efficient service routing.
Instructions
Register a new MCP server with the discovery service.
Args:
server_name: Unique name of the server
server_description: Description of the server
server_endpoint: Endpoint URL of the server
tools: List of tools provided by the server
Input Schema
Name | Required | Description | Default |
---|---|---|---|
server_description | Yes | ||
server_endpoint | Yes | ||
server_name | Yes | ||
tools | Yes |
Input Schema (JSON Schema)
{
"properties": {
"server_description": {
"title": "Server Description",
"type": "string"
},
"server_endpoint": {
"title": "Server Endpoint",
"type": "string"
},
"server_name": {
"title": "Server Name",
"type": "string"
},
"tools": {
"items": {
"additionalProperties": true,
"type": "object"
},
"title": "Tools",
"type": "array"
}
},
"required": [
"server_name",
"server_description",
"server_endpoint",
"tools"
],
"title": "add_mcp_serverArguments",
"type": "object"
}