Skip to content

Instantly share code, notes, and snippets.

@sirmews
Created January 15, 2025 07:23
Show Gist options
  • Save sirmews/ce1cd66774b94e521608f72719d6a6fd to your computer and use it in GitHub Desktop.
Save sirmews/ce1cd66774b94e521608f72719d6a6fd to your computer and use it in GitHub Desktop.
{
"tools": [
{
"name": "echo",
"description": "Echoes back any input sent to it",
"inputSchema": {
"type": "object",
"properties": {
"message": {
"type": "string",
"description": "Message to echo"
}
},
"required": ["message"]
},
"handler": "https://webhook.site/671f1800-dc2a-4228-ad7c-2bde666ce120"
}
],
"resources": [
{
"uri": "test://status",
"name": "Test Status",
"description": "Returns test status information",
"mimeType": "application/json",
"handler": "https://webhook.site/671f1800-dc2a-4228-ad7c-2bde666ce120"
}
],
"prompts": [
{
"name": "test-prompt",
"description": "A test prompt that returns sample messages",
"arguments": [
{
"name": "topic",
"description": "Topic to discuss",
"required": true
}
],
"handler": "https://webhook.site/671f1800-dc2a-4228-ad7c-2bde666ce120"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment