MCPToolRequest
Request model for MCP tool invocation
Properties
server (required)
- Type:
string - Description: MCP server name (mongodb, neo4j, business_intel, etc.)
tool_name (required)
- Type:
string - Description: Name of the MCP tool to call
arguments
- Type:
object - Description: Tool-specific arguments
timeout
- Type:
object - Description: Timeout in seconds
Example
{
"arguments": {
"limit": 10,
"query": {
"sport": "football"
}
},
"server": "mongodb",
"timeout": 30,
"tool_name": "find_leagues"
}