Quote Collection MCP-Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Quote Collection MCP-ServerFind all quotes by Oscar Wilde"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
MCP Project
Quote Collection MCP-Server
In this project, you will develop an MCP server for a personal quote collection. The server should make it possible to collect, categorize, and retrieve inspiring quotes in a targeted or random manner.
Framework conditions:
AI-First: Use the AI-First approach and actively use AI tools to support all phases of development.
Persistence: The data must be stored in a JSON file.
Language choice: The implementation language is freely selectable.
Technical robustness: The search must work case-insensitively and the server must handle errors robustly.
Steps:
Planning and conception: Start by selecting a suitable implementation language and decide on the architecture of the MCP server.
Data structure: Define the JSON data structure for persisting the quotes.
Data model and basic functions: Create the data model and implement the basic functions for storage management.
Data model: A quote must contain the following fields:
Unique ID
Text of the quote
Creation date
Tags: Author tag (who said it), topic tag (e.g., "Motivation", "Love"), and language tag (e.g., "German", "English").
Storage: Implement the function to save individual quotes.
Batch import: Enable importing multiple quotes at once.
Example of the data format: { "text": "Be yourself; everyone else is already taken.", "autor_tag": "Oscar Wilde", "themen_tag": "Authentizität", "sprachen_tag": "englisch" }
Search functions and logic: Develop the logic for retrieving and managing the quotes.
Search: Implement a search function that finds quotes based on all three tag types or the text itself (case-insensitive).
Random quote: Create a function that returns a random quote. It should optionally be filterable by specific tags.
Delete: Implement the ability to remove quotes.
MCP server integration: Integrate your logic into the MCP framework to make the server usable.
Integration: Connect the implemented functions (tools) with the MCP interface.
Test: Test the functionality and robustness of the server with Claude or a corresponding MCP client.
Related MCP server: Notes MCP Server
Submission
Push your solution to this repository and wait for feedback in the feedback PR.
Available Tools
6 toolsadd_quoteAdd QuoteA
Add a single new quote to the collection.
| Name | Required | Description | Default |
|---|---|---|---|
| text | Yes | The quote text itself | |
| topic_tag | Yes | Topic/category, e.g. 'motivation', 'love' | |
| author_tag | Yes | Who said or wrote the quote | |
| language_tag | Yes | Language of the quote, e.g. 'English', 'German' |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
There are no annotations, so the description carries the full burden. It clearly states the core effect — adding a quote to the collection — but it does not disclose behavior around duplicates, tag validation, or what happens upon success.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence with no filler. Every word is functional, and it avoids re-listing schema properties.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple add operation with fully described required parameters and no output schema, this is mostly complete. It could still mention duplicate behavior or a successful response, but the basic context is sufficient for an agent to invoke it correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, and each parameter already has a meaningful description with examples. The tool description adds no additional parameter-level detail, so it sits at the schema-driven baseline.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description names a specific verb and resource: 'Add' a 'single new quote'. The word 'single' clearly contrasts with the sibling import_quotes, and the collection context makes the target explicit. This is enough for an agent to select the tool confidently.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies this is for adding one quote at a time, which differentiates it from import_quotes, but it does not explicitly state when to prefer this tool over alternatives. No exclusions or if-then routing guidance is provided.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
delete_quoteDelete QuoteB
Delete a quote by its unique ID.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | The unique ID of the quote to delete |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It explicitly says the action is 'Delete', which conveys destruction, but it does not disclose permanence, irreversibility, required permissions, or any cascading effects. For a destructive operation, this is a notable gap.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is one concise, front-loaded sentence with zero wasted words. It clearly states the action, the target resource, and the required identifier.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With one required parameter, 100% schema coverage, and no nested objects, the description is mostly sufficient for basic invocation. However, because there are no annotations, the destructive nature, irreversibility, and any danger implications are left to the agent to infer, making the context incomplete for risk-aware tool use.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, and the schema already fully describes 'id' as the unique ID of the quote to delete. The description repeats nearly the same wording and adds no additional semantic detail beyond what the schema provides, so the baseline 3 applies.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description is a specific verb+resource statement: 'Delete a quote' by its unique ID. It is clearly distinguishable from all sibling tools (add, import, list, random, search) since it uniquely describes a destructive deletion operation.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives no guidance on when to use this tool versus alternatives, no prerequisites, and no mention of needing to find the ID first (e.g., via search_quotes or list_quotes). The only implied condition is that the caller must know the quote's unique ID.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
import_quotesBatch Import QuotesA
Import multiple quotes at once.
| Name | Required | Description | Default |
|---|---|---|---|
| quotes | Yes | Array of quotes to import |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description bears the full burden of explaining behavior. It only says 'Import multiple quotes at once' and does not disclose whether duplicates are handled, whether existing quotes are replaced, what validations occur, or what the operation returns. For a mutation/creation tool, this is a significant transparency gap.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient, front-loaded sentence with no filler or repetition. Every phrase earns its place, and the core action is clear from the start.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool inputs are simple, but no annotations, no output schema, and no behavior details mean the description alone does not fully prepare an agent. Missing context includes how duplicates are handled, whether an import is atomic, any validation rules, and what a successful import returns. This is below the minimum viable bar for a batched create operation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema already documents the quotes parameter as 'Array of quotes to import,' so the description adds no further parameter meaning. The nested required fields (text, author_tag, topic_tag, language_tag) have no individual descriptions, and the tool description does not clarify their semantics either, relying on their self-explanatory names.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states a specific action ('Import') and resource ('multiple quotes at once'), which distinguishes it from its sibling add_quote by emphasizing batch operation. Even without naming the sibling, the purpose is obvious and unambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The phrase 'multiple quotes at once' clearly signals that this tool is for batch imports rather than single additions, which is a clear usage context. However, it does not explicitly name alternatives like add_quote or mention when not to use it, so it stops short of a 5.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_quotesList All QuotesA
List every quote currently stored in the collection.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden. It unambiguously presents the operation as a non-mutating retrieval of all stored quotes, which is the key behavioral trait. It does not mention ordering or pagination, but for a zero-parameter list operation the description is sufficiently transparent about the operation's nature.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
A single, direct sentence with no redundant wording. It opens with the operation and immediately defines the scope. Every word contributes to the meaning.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the zero-parameter surface, the description is nearly complete: an agent can safely invoke the tool without additional setup. It does not mention return shape or pagination, but for a simple list-all operation with no output schema, this is acceptable and low-risk.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has no parameters, and the input schema is empty, so there is no parameter burden on the description. The description's mention of 'every quote' clarifies the retrieval scope, which adds slight semantic value beyond the schema, though not much is required.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the operation: 'List every quote currently stored in the collection.' The verb is explicit, the resource is specific, and the scope ('every quote') distinguishes it from filtered or random retrieval tools like search_quotes and random_quote.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The phrase 'every quote currently stored in the collection' gives clear context for when an agent should use this tool: when it needs the full collection. It does not explicitly compare against sibling tools or state when-not-to-use, but the scope is obvious enough to guide selection.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
random_quoteRandom QuoteB
Get a random quote, optionally filtered by author, topic, and/or language tag.
| Name | Required | Description | Default |
|---|---|---|---|
| topic_tag | No | Filter by topic | |
| author_tag | No | Filter by author | |
| language_tag | No | Filter by language |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description is the sole source of behavioral information. While 'Get' implies read-only, the description does not disclose side effects, randomness guarantees, return format, or any rate limits. It remains minimal and does not go beyond the basic function.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence that begins with the core action 'Get a random quote' and then adds the optional filtering. It is concise, well-structured, and free of redundant detail.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with three optional parameters and no output schema, the description is reasonably complete but lacks key context such as the return type (single quote vs. array), any pagination, or behavior when no filter matches. Given the absence of an output schema, the description should specify the response shape, which it does not.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema already provides descriptions for each parameter (100% coverage), and the description repeats that they are optional filters. It adds little beyond the schema, so the baseline of 3 is appropriate. No additional meaning is provided about value formats or constraints.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: it retrieves a random quote, with optional filters. The verb 'Get' and resource 'random quote' are specific, and the mention of filtering distinguishes it from simple retrieval tools like list_quotes or deletion tools like delete_quote.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description does not provide any guidance on when to use this tool versus alternatives. It does not mention when to prefer this over search_quotes or list_quotes, nor does it indicate exclusivity or prerequisites. The agent is left to infer appropriateness from the name and sibling names.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_quotesSearch QuotesA
Search quotes by text or by author/topic/language tag. Case-insensitive substring match.
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | Text to search for across quote text and all tags |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description must carry the behavioral burden. It discloses the matching logic (case-insensitive substring) and that the search spans quote text and tags, which is helpful. However, it does not explicitly state that the operation is read-only (though obvious for a search) or describe the return structure/pagination, leaving some behavioral gaps.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences, front-loaded with the core purpose and then the matching detail. Every word earns its place; no fluff or repetition of the schema.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple single-parameter search tool with no output schema and no nested objects, the description covers the essential aspects: search scope and matching semantics. It omits details like result ordering or pagination, but these are less critical for a search tool and can be reasonably inferred from the name and common expectations.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The parameter schema provides a clear description (searches across quote text and all tags), achieving 100% schema coverage. The tool description adds extra semantics by specifying case-insensitive substring matching, which goes beyond the schema. This enriches the parameter understanding without redundancy.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states a specific verb ('Search') and resource ('quotes'), and specifies the search dimensions (text, author/topic/language tags) and matching behavior (case-insensitive substring). However, it does not explicitly differentiate from siblings like list_quotes or random_quote, though the name and its search-centric wording imply the distinction.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies when to use this tool (for targeted quote searching) but provides no explicit guidance on when not to use it or viable alternatives. Siblings like list_quotes or random_quote are not mentioned, leaving the agent to infer context from the tool name alone.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
6 tool updates
v1.0.0- First observed
add_quote - First observed
delete_quote - First observed
import_quotes - First observed
list_quotes - First observed
random_quote - First observed
search_quotes
TDQS
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.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Search, read, cite, create, and safely update a user's private KeepFlash knowledge library.
- GleanitOAuthco.gleanit
Search, read, and write highlights, notes, screenshots, collections, projects, and tags in Gleanit.
Search, save, and set reminders in your personal MarkIt library of links, posts, and notes.
Connect AI to your flomo notes. Search, create, edit notes and manage tags via MCP.
Related MCP Servers
- -licenseNot gradedqualityNot gradedmaintenanceEnables interaction with Futurama quotes through Claude Desktop by connecting to the Futurama Quote Machine API. Supports getting random quotes, searching by character, adding new quotes, editing existing ones, and managing the quote collection through natural language.-
- AlicenseAqualityDmaintenanceEnables creating, managing, and searching Markdown notes with support for tags, timestamps, and full-text search. Includes AI prompts for analyzing and summarizing notes.61MIT
- FlicenseNot gradedqualityNot gradedmaintenanceProvides access to inspirational quotes through a free API, enabling users to retrieve random quotes, search quotes by keywords, and fetch specific quotes by ID.-
- AlicenseBqualityDmaintenanceEnables retrieval of random inspirational quotes from various categories including age, art, business, courage, education, friendship, happiness, leadership, and many more through the API Ninjas Quotes API.1MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/edkeric/mcp-quote-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server