Created
January 15, 2025 07:23
-
-
Save sirmews/ce1cd66774b94e521608f72719d6a6fd to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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