Wanaku MCP Server
Official
by wanaku-ai
- samples
- indexes
[
{
"name": "meow-facts",
"description": "Retrieve random facts about cats",
"uri": "https://meowfacts.herokuapp.com?count={count}",
"type": "http",
"inputSchema": {
"type": "object",
"properties": {
"count": {
"type": "int",
"description": "The number of facts to retrieve"
}
},
"required": [
"count"
]
}
},
{
"name": "free-currency-conversion-api",
"description": "Free currency conversion API",
"uri": "https://economia.awesomeapi.com.br/last/{firstCurrency}-{secondCurrency}",
"type": "http",
"inputSchema": {
"type": "object",
"properties": {
"firstCurrency": {
"type": "string",
"description": "The first currency passed to the tool invocation (3 letter, i.e.: USD, EUR, etc)"
},
"secondCurrency": {
"type": "string",
"description": "The second currency passed to the tool invocation (3 letter, i.e.: BRL, CZK, etc)"
}
},
"required": [
"firstCurrency", "secondCurrency"
]
}
},
{
"name": "camel-route",
"description": "Invoke a camel route",
"uri": "camel:///Users/opiske/code/java/wanaku/samples/routes/camel-route/hello-quote.camel.yaml",
"type": "camel-route",
"inputSchema": {
"type": "object",
"properties": {
"_body": {
"type": "string",
"description": "The data to be passed to the route"
}
},
"required": [
"_body"
]
}
}
]