Service MCP Requests
These actions provide ability to expose existing microservice capabilities over MCP.
Service MCP Requests Actions
CallRPC
Field
Definition
Example
Default
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"eventMeta": {
"type": "object",
"properties": {
"domain": {
"type": "string",
"description": "ID of the MCP server to interact with",
"examples": ["procurement_specialist"],
"default": null
},
"inputElement": {
"type": "string",
"description": "Json path for the input in request event payload",
"examples": ["message"],
"default": null
},
"outputElement": {
"type": "string",
"description": "Json path for the output in response event payload",
"examples": ["output"],
"default": null
}
}
}
}
}Parameter
Definition
Example
Default
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"eventMeta": {
"type": "object",
"properties": {
"parameters": {
"type": "object",
"properties": {
"inputPattern": {
"type": "string",
"description": "Jmespath expression for converting input payload to MCP call",
"default": null
}
}
}
}
}
}
}Initialize Request
{
"jsonrpc": "2.0",
"method": "initialize"
}Tool Listing Request
{
"jsonrpc": "2.0",
"method": "tools/list"
}Tool Call Request
Last updated
