create_mid_call_tool
ActiveTool of Famulor
declared in 0.2.0
Create a new mid-call HTTP tool.
Parameters schema
{
"type": "object",
"required": [
"name",
"description",
"endpoint",
"method"
],
"properties": {
"name": {
"type": "string",
"description": "Tool identifier: lowercase letters and underscores, starts with a letter"
},
"method": {
"enum": [
"GET",
"POST",
"PUT",
"PATCH",
"DELETE"
],
"type": "string"
},
"schema": {
"type": "array",
"items": {
"type": "object",
"required": [
"name",
"type",
"description"
],
"properties": {
"name": {
"type": "string"
},
"type": {
"enum": [
"string",
"number",
"boolean"
],
"type": "string"
},
"description": {
"type": "string"
}
}
}
},
"headers": {
"type": "array",
"items": {
"type": "object",
"required": [
"name",
"value"
],
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
}
}
}
},
"timeout": {
"type": "integer",
"description": "Seconds, 1-30"
},
"endpoint": {
"type": "string",
"description": "HTTPS URL to call"
},
"description": {
"type": "string",
"description": "When the AI should use it (max 255 chars)"
}
}
}Parent server
Famulor
https://github.com/bekservice/Famulor-MCP
1/7 registries