Quote Collection MCP-Server
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
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| add_quoteA | Add a single new quote to the collection. |
| import_quotesA | Import multiple quotes at once. |
| search_quotesA | Search quotes by text or by author/topic/language tag. Case-insensitive substring match. |
| random_quoteB | Get a random quote, optionally filtered by author, topic, and/or language tag. |
| delete_quoteB | Delete a quote by its unique ID. |
| list_quotesA | List every quote currently stored in the collection. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 6 tools
Each tool has a clearly distinct purpose: adding, importing, searching, random selection, deletion, and listing. No two tools overlap in functionality; search and random both filter but serve different intents (finding specific vs. retrieving a random quote).
All tool names follow a consistent verb_noun pattern using snake_caseadd_quote, import_quotes, search_quotes, random_quote, delete_quote, list_quotes). The pattern is uniform and predictable.
Six tools is well within the ideal 3-15 range for a focused domain like a quote collection. Each tool serves a necessary function without redundancy or bloat.
The set covers create (add, import), read (list, search, random), and delete, but lacks an update operation for editing existing quotes. This is a minor gap since quotes are typically static, but an update tool would complete the CRUD lifecycle.