CatMCP
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
| logging | {} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| extensions | {
"io.modelcontextprotocol/ui": {}
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| get_random_jokeB | Retrieve a random cat joke. |
| list_categoriesA | Get a list of all available cat joke categories. |
| search_jokesA | Search jokes for a specific keyword in the setup or punchline. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
| tell_cat_joke | Create a prompt instructing the LLM to deliver a cat joke in a specific tone. |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
| get_all_jokes | Get the complete list of cat jokes in JSON format. |
| get_categories_info | Get a summary of categories and their joke counts in JSON format. |
| get_random_joke_resource | Get a dynamically selected random cat joke in plain text. |
TDQS
Scored across 3 tools
Each tool has a clearly distinct purpose: retrieving a random joke, listing categories, and searching jokes by keyword. There is no overlap or ambiguity between them.
All tool names follow a consistent verb_noun pattern: get_random_joke, list_categories, search_jokes. This makes the API predictable and easy to navigate.
With only 3 tools, the server is tightly scoped and each tool earns its place. The count is appropriate for a focused cat joke service.
The tool set covers the core needs of a joke API: random access, category browsing, and keyword search. There are no obvious missing operations for the stated purpose.