wyreup-mcp
Version:
Production-ready MCP server that transforms automation platform webhooks into reliable, agent-callable tools
58 lines (57 loc) • 1.63 kB
JSON
{
"tools": [
{
"name": "random_quote",
"description": "Returns a random inspirational quote.",
"url": "https://wyreup.com/tools-mock/random-quote",
"public": true,
"input": {},
"output": { "quote": "string", "author": "string" },
"method": "GET"
},
{
"name": "current_time_utc",
"description": "Returns the current server time in ISO 8601 UTC format.",
"url": "https://wyreup.com/tools-mock/current-time",
"public": false,
"input": {},
"output": { "currentTimeISO": "string" },
"method": "GET",
"auth": {
"type": "header",
"name": "X-API-Key",
"value": "mock-secret-key"
}
},
{
"name": "echo_message",
"description": "Echoes back the JSON body. Expects 'message' and 'detail'.",
"url": "https://wyreup.com/tools-mock/echo",
"public": false,
"input": { "message": "string", "detail": "string" },
"output": {
"received_message": "string",
"received_detail": "string",
"timestamp": "string"
},
"method": "POST",
"auth": {
"type": "header",
"name": "X-API-Key",
"value": "test-api-key-12345"
}
},
{
"name": "secure_external_tool",
"description": "Example tool using external secrets from ~/.wyreup-secrets.",
"url": "https://wyreup.com/tools-mock/secure-external",
"public": false,
"input": { "query": "string" },
"output": { "result": "string" },
"method": "POST",
"authFrom": {
"user": "demo-user"
}
}
]
}