Prompts MCP Server
This Prompts MCP Server is a Model Context Protocol endpoint for managing prompt templates stored as markdown files with YAML frontmatter support. You can:
Add Prompts: Store new prompts as markdown files with optional or structured metadata
Retrieve Prompts: Fetch specific prompts by name
List Prompts: View all available prompts with metadata previews
Delete Prompts: Remove prompts by name
Key features include:
File-based Storage: Prompts stored in a configurable directory (default:
prompts/)Real-time Caching: In-memory cache with automatic updates on file changes
Metadata Support: YAML frontmatter for structured data (title, description, tags, etc.)
Client Integration: Compatible with MCP applications like Claude Desktop, Cline, Continue.dev, and Zed Editor
Supports containerized deployment of the prompts MCP server with volume mounting for prompt storage
Mentioned as an available code linting tool for development of the MCP server
Provides installation directly from the GitHub repository, with access to releases, issues, and documentation
Provides specific configuration path for Claude Desktop integration on macOS
Stores prompts as markdown files with YAML frontmatter for structured metadata
Runs the MCP server using Node.js with specific version requirements (18.0.0+)
Implemented fully in TypeScript with comprehensive type definitions and strict type checking
Uses Vitest as the testing framework with watch mode for development
Supports structured metadata using YAML frontmatter in prompt files
Click on "Deploy 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., "@Prompts MCP Serveradd a prompt named 'email_writer' for drafting professional emails"
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.
Prompts MCP Server
A Model Context Protocol (MCP) server for managing and providing prompts. This server allows users and LLMs to easily add, retrieve, and manage prompt templates stored as markdown files with YAML frontmatter support.
Quick Start
# 1. Install from NPM
npm install -g prompts-mcp-server
# 2. Add to your MCP client config (e.g., Claude Desktop)
# Add this to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"prompts-mcp-server": {
"command": "prompts-mcp-server"
}
}
}
# 3. Restart your MCP client and start using the tools!Related MCP server: RISEN Prompt Engineering MCP Tool
Features
Add Prompts: Store new prompts as markdown files with YAML frontmatter
Retrieve Prompts: Get specific prompts by name
List Prompts: View all available prompts with metadata preview
Delete Prompts: Remove prompts from the collection
File-based Storage: Prompts are stored as markdown files in the
prompts/directoryReal-time Caching: In-memory cache with automatic file change monitoring
YAML Frontmatter: Support for structured metadata (title, description, tags, etc.)
TypeScript: Full TypeScript implementation with comprehensive type definitions
Modular Architecture: Clean separation of concerns with dependency injection
Comprehensive Testing: 95 tests with 84.53% code coverage
Installation
Option 1: From NPM (Recommended)
Install the package globally from NPM:
npm install -g prompts-mcp-serverThis will make the prompts-mcp-server command available in your system.
After installation, you need to configure your MCP client to use it. See MCP Client Configuration.
Option 2: From GitHub (for development)
# Clone the repository
git clone https://github.com/tanker327/prompts-mcp-server.git
cd prompts-mcp-server
# Install dependencies
npm install
# Build the TypeScript code
npm run build
# Test the installation
npm testOption 3: Direct Download
Download the latest release from GitHub
Extract to your desired location
Run installation steps from Option 2.
Verification
After installation, verify the server works:
# Start the server (should show no errors)
npm start
# Or test with MCP Inspector
npx @modelcontextprotocol/inspector prompts-mcp-serverTesting
Run the comprehensive test suite:
npm testRun tests with coverage:
npm run test:coverageWatch mode for development:
npm run test:watchMCP Tools
The server provides the following tools:
add_prompt
Add a new prompt to the collection. If no YAML frontmatter is provided, default metadata will be automatically added.
name (string): Name of the prompt
content (string): Content of the prompt in markdown format with optional YAML frontmatter
create_structured_prompt
Create a new prompt with guided metadata structure and validation.
name (string): Name of the prompt
title (string): Human-readable title for the prompt
description (string): Brief description of what the prompt does
category (string, optional): Category (defaults to "general")
tags (array, optional): Array of tags for categorization (defaults to ["general"])
difficulty (string, optional): "beginner", "intermediate", or "advanced" (defaults to "beginner")
author (string, optional): Author of the prompt (defaults to "User")
content (string): The actual prompt content (markdown)
get_prompt
Retrieve a prompt by name.
name (string): Name of the prompt to retrieve
list_prompts
List all available prompts with metadata preview. No parameters required.
delete_prompt
Delete a prompt by name.
name (string): Name of the prompt to delete
Usage Examples
Once connected to an MCP client, you can use the tools like this:
Method 1: Quick prompt creation with automatic metadata
// Add a prompt without frontmatter - metadata will be added automatically
add_prompt({
name: "debug_helper",
content: `# Debug Helper
Help me debug this issue by:
1. Analyzing the error message
2. Suggesting potential causes
3. Recommending debugging steps`
})
// This automatically adds default frontmatter with title "Debug Helper", category "general", etc.Method 2: Structured prompt creation with full metadata control
// Create a prompt with explicit metadata using the structured tool
create_structured_prompt({
name: "code_review",
title: "Code Review Assistant",
description: "Helps review code for best practices and potential issues",
category: "development",
tags: ["code", "review", "quality"],
difficulty: "intermediate",
author: "Development Team",
content: `# Code Review Prompt
Please review the following code for:
- Code quality and best practices
- Potential bugs or issues
- Performance considerations
- Security vulnerabilities
## Code to Review
[Insert code here]`
})Method 3: Manual frontmatter (preserves existing metadata)
// Add a prompt with existing frontmatter - no changes made
add_prompt({
name: "custom_prompt",
content: `---
title: "Custom Assistant"
category: "specialized"
tags: ["custom", "specific"]
difficulty: "advanced"
---
# Custom Prompt Content
Your specific prompt here...`
})Other operations
// Get a prompt
get_prompt({ name: "code_review" })
// List all prompts (shows metadata preview)
list_prompts({})
// Delete a prompt
delete_prompt({ name: "old_prompt" })File Structure
prompts-mcp-server/
├── src/
│ ├── index.ts # Main server orchestration
│ ├── types.ts # TypeScript type definitions
│ ├── cache.ts # Caching system with file watching
│ ├── fileOperations.ts # File I/O operations
│ └── tools.ts # MCP tool definitions and handlers
├── tests/
│ ├── helpers/
│ │ ├── testUtils.ts # Test utilities
│ │ └── mocks.ts # Mock implementations
│ ├── cache.test.ts # Cache module tests
│ ├── fileOperations.test.ts # File operations tests
│ ├── tools.test.ts # Tools module tests
│ └── index.test.ts # Integration tests
├── prompts/ # Directory for storing prompt markdown files
│ ├── code_review.md
│ ├── debugging_assistant.md
│ └── api_design.md
├── dist/ # Compiled JavaScript output
├── CLAUDE.md # Development documentation
├── package.json
├── tsconfig.json
└── README.mdArchitecture
The server uses a modular architecture with the following components:
PromptCache: In-memory caching with real-time file change monitoring via chokidar
PromptFileOperations: File I/O operations with cache integration
PromptTools: MCP tool definitions and request handlers
Type System: Comprehensive TypeScript types for all data structures
YAML Frontmatter Support
Prompts can include structured metadata using YAML frontmatter:
---
title: "Prompt Title"
description: "Brief description of the prompt"
category: "development"
tags: ["tag1", "tag2", "tag3"]
difficulty: "beginner" | "intermediate" | "advanced"
author: "Author Name"
version: "1.0"
---
# Prompt Content
Your prompt content goes here...MCP Client Configuration
This server can be configured with various MCP-compatible applications. Here are setup instructions for popular clients:
Claude Desktop
Add this to your Claude Desktop configuration file:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%/Claude/claude_desktop_config.json
{
"mcpServers": {
"prompts-mcp-server": {
"command": "prompts-mcp-server",
"env": {
"PROMPTS_FOLDER_PATH": "/path/to/your/prompts/directory"
}
}
}
}Cline (VS Code Extension)
Add to your Cline MCP settings in VS Code:
{
"cline.mcp.servers": {
"prompts-mcp-server": {
"command": "prompts-mcp-server",
"env": {
"PROMPTS_FOLDER_PATH": "/path/to/your/prompts/directory"
}
}
}
}Continue.dev
In your ~/.continue/config.json:
{
"mcpServers": [
{
"name": "prompts-mcp-server",
"command": "prompts-mcp-server",
"env": {
"PROMPTS_FOLDER_PATH": "/path/to/your/prompts/directory"
}
}
]
}Zed Editor
In your Zed settings (~/.config/zed/settings.json):
{
"assistant": {
"mcp_servers": {
"prompts-mcp-server": {
"command": "prompts-mcp-server",
"env": {
"PROMPTS_DIR": "/path/to/your/prompts/directory"
}
}
}
}
}Custom MCP Client
For any MCP-compatible application, use these connection details:
Protocol: Model Context Protocol (MCP)
Transport: stdio
Command:
prompts-mcp-serverEnvironment Variables:
PROMPTS_FOLDER_PATH: Custom directory for storing prompts (optional, defaults to./prompts)
Development/Testing Setup
For development or testing with the MCP Inspector:
# Install MCP Inspector
npm install -g @modelcontextprotocol/inspector
# Run the server with inspector
npx @modelcontextprotocol/inspector prompts-mcp-serverDocker Configuration
Create a docker-compose.yml for containerized deployment:
version: '3.8'
services:
prompts-mcp-server:
build: .
environment:
- PROMPTS_FOLDER_PATH=/app/prompts
volumes:
- ./prompts:/app/prompts
stdin_open: true
tty: trueServer Configuration
The server automatically creates the
prompts/directory if it doesn't existPrompt files are automatically sanitized to use safe filenames (alphanumeric characters, hyphens, and underscores only)
File changes are monitored in real-time and cache is updated automatically
Prompts directory can be customized via the
PROMPTS_FOLDER_PATHenvironment variable
Environment Variables
Variable | Description | Default |
| Custom directory to store prompt files (overrides default) | (not set) |
| Environment mode |
|
Note: If
PROMPTS_FOLDER_PATHis set, it will be used as the prompts directory. If not set, the server defaults to./promptsrelative to the server location.
Requirements
Node.js 18.0.0 or higher
TypeScript 5.0.0 or higher
Dependencies:
@modelcontextprotocol/sdk ^1.0.0
gray-matter ^4.0.3 (YAML frontmatter parsing)
chokidar ^3.5.3 (file watching)
Development
The project includes comprehensive tooling for development:
TypeScript: Strict type checking and modern ES modules
Vitest: Fast testing framework with 95 tests and 84.53% coverage
ESLint: Code linting (if configured)
File Watching: Real-time cache updates during development
Troubleshooting
Common Issues
"Module not found" errors
# Ensure TypeScript is built
npm run build
# Check that dist/ directory exists and contains .js files
ls dist/MCP client can't connect
Verify the server starts without errors:
npm startCheck the correct path is used in client configuration
Ensure Node.js 18+ is installed:
node --versionTest with MCP Inspector:
npx @modelcontextprotocol/inspector prompts-mcp-server
Permission errors with prompts directory
# Ensure the prompts directory is writable
mkdir -p ./prompts
chmod 755 ./promptsFile watching not working
On Linux: Install
inotify-toolsOn macOS: No additional setup needed
On Windows: Ensure Windows Subsystem for Linux (WSL) or native Node.js
Debug Mode
Enable debug logging by setting environment variables:
# Enable debug mode
DEBUG=* node dist/index.js
# Or with specific debug namespace
DEBUG=prompts-mcp:* node dist/index.jsGetting Help
Check the GitHub Issues
Review the test files for usage examples
Use MCP Inspector for debugging client connections
Check your MCP client's documentation for configuration details
Performance Tips
The server uses in-memory caching for fast prompt retrieval
File watching automatically updates the cache when files change
Large prompt collections (1000+ files) work efficiently due to caching
Consider using SSD storage for better file I/O performance
Community Variants & Extensions
Project | Maintainer | Extra Features |
GitHub-hosted prompt libraries, advanced search & composition, richer TypeScript types, etc. |
👉 Have you built something cool on top of prompts-mcp-server?
Open an issue or PR to add it here so others can discover your variant!
License
MIT
Available Tools
5 toolsadd_promptC
Add a new prompt to the collection
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Name of the prompt | |
| filename | Yes | English filename for the prompt file (without .md extension) | |
| content | Yes | Content of the prompt in markdown format |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It implies a write operation ('Add') but doesn't specify permissions, side effects (e.g., overwriting existing prompts), or error handling. This is inadequate for a mutation tool with zero annotation coverage.
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 sentence with no wasted words, clearly stating the tool's action. It's appropriately sized and front-loaded, making it easy to understand at a glance.
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 tool's complexity as a mutation operation with no annotations and no output schema, the description is insufficient. It lacks details on behavior, return values, or error cases, leaving significant gaps for an AI agent to use 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%, so the input schema fully documents the three parameters (name, filename, content). The description adds no additional meaning beyond the schema, such as format examples or constraints, resulting in the baseline score for high coverage.
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 action ('Add') and resource ('new prompt to the collection'), making the purpose understandable. However, it doesn't differentiate from sibling tools like 'create_structured_prompt' which likely serves a similar purpose, preventing a perfect score.
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 provides no guidance on when to use this tool versus alternatives like 'create_structured_prompt' or 'list_prompts', nor does it mention prerequisites or context for adding prompts. It's a basic statement with no usage instructions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
create_structured_promptC
Create a new prompt with guided metadata structure
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Name of the prompt | |
| title | Yes | Human-readable title for the prompt | |
| description | Yes | Brief description of what the prompt does | |
| category | No | Category (e.g., development, writing, analysis) | |
| tags | No | Array of tags for categorization | |
| difficulty | No | Difficulty level of the prompt | |
| author | No | Author of the prompt | |
| content | Yes | The actual prompt content (markdown) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries full burden but only states it creates a prompt with metadata. It doesn't disclose behavioral traits such as permissions needed, whether creation is idempotent, error handling, or response format, leaving significant gaps for a mutation tool.
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 sentence that front-loads the core action and key feature ('guided metadata structure'). It avoids redundancy and wastes no words, making it highly concise and well-structured.
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 mutation tool with 8 parameters, no annotations, and no output schema, the description is incomplete. It lacks details on behavior, error cases, return values, and differentiation from siblings, failing to compensate for the absence of structured metadata.
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%, so the schema fully documents all 8 parameters. The description adds minimal value by mentioning 'guided metadata structure', which loosely relates to parameters like category and tags, but doesn't provide additional semantics beyond the schema.
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 action ('Create') and resource ('new prompt'), specifying it involves 'guided metadata structure'. It distinguishes from siblings like 'add_prompt' by emphasizing structured metadata, but doesn't explicitly contrast with all siblings (e.g., 'get_prompt').
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?
No guidance on when to use this tool versus alternatives like 'add_prompt' is provided. The description implies creation with metadata, but lacks explicit context, prerequisites, or exclusions for tool selection among siblings.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
delete_promptC
Delete a prompt by name
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Name of the prompt 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 states the tool deletes a prompt, implying a destructive mutation, but doesn't cover critical aspects like permissions needed, whether deletion is permanent or reversible, error handling (e.g., if the prompt doesn't exist), or side effects. This leaves significant gaps for a mutation tool.
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 sentence with zero waste. It's front-loaded with the core action and resource, making it easy to parse quickly. Every word earns its place without redundancy or unnecessary elaboration.
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 destructive mutation tool with no annotations and no output schema, the description is incomplete. It lacks details on behavioral traits (e.g., permanence, permissions), error scenarios, or what happens post-deletion. Given the complexity of deletion operations and the absence of structured data to compensate, more context is needed to be fully helpful.
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 description coverage is 100%, with the parameter 'name' fully documented in the schema as 'Name of the prompt to delete'. The description adds no additional meaning beyond this, such as format constraints or examples. Given the high schema coverage, the baseline score of 3 is appropriate as the schema does the heavy lifting.
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 'Delete a prompt by name' clearly states the action (delete) and resource (prompt) with a specific method (by name). It distinguishes from siblings like 'get_prompt' or 'list_prompts' by indicating a destructive operation, though it doesn't explicitly contrast with all siblings like 'add_prompt' or 'create_structured_prompt'. This makes it clear but not fully differentiated.
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 provides no guidance on when to use this tool versus alternatives. It doesn't mention prerequisites (e.g., needing an existing prompt), exclusions (e.g., not for structured prompts), or direct comparisons to siblings like 'add_prompt' or 'get_prompt'. Without such context, users must infer usage from the name alone.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_promptC
Retrieve a prompt by name
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Name of the prompt to retrieve |
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. 'Retrieve' implies a read operation, but it doesn't specify permissions needed, error handling (e.g., if the prompt doesn't exist), rate limits, or response format. For a tool with zero annotation coverage, this leaves significant gaps in understanding its behavior.
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 sentence with zero waste. It's front-loaded with the core action ('retrieve a prompt') and includes the key constraint ('by name'), making it easy to parse quickly. Every word earns its place without redundancy.
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 lack of annotations and output schema, the description is incomplete. It doesn't explain what 'retrieve' entails (e.g., returns prompt content, metadata, or both), error cases, or how it differs behaviorally from siblings. For a tool in a set with multiple prompt-related operations, more context is needed to guide effective 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?
The schema description coverage is 100%, with the single parameter 'name' fully documented in the schema. The description adds minimal value beyond the schema by implying the parameter is used to identify the prompt, but it doesn't provide additional context like format examples or constraints. Baseline 3 is appropriate when the schema does the heavy lifting.
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 verb ('retrieve') and resource ('prompt'), specifying it's done 'by name'. It distinguishes from siblings like 'list_prompts' (which retrieves multiple) and 'delete_prompt' (which removes). However, it doesn't explicitly differentiate from 'add_prompt' or 'create_structured_prompt' in terms of retrieval vs. creation, though the verb 'retrieve' implies read-only access.
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 provides no guidance on when to use this tool versus alternatives. It doesn't mention prerequisites (e.g., needing an existing prompt), exclusions (e.g., not for creating prompts), or direct comparisons to siblings like 'list_prompts' for browsing all prompts. Usage is implied by the action but not explicitly stated.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_promptsB
List all available prompts
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It only states the action ('List all available prompts') without mentioning critical details like whether this is a read-only operation, if it requires specific permissions, how results are returned (e.g., pagination), or any rate limits. This leaves significant gaps for an agent to understand the tool's behavior.
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, clear sentence with no wasted words. It's front-loaded with the core action and resource, making it easy for an agent to parse quickly. Every word earns its place by directly conveying the tool's purpose.
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 tool's simplicity (0 parameters, no output schema), the description is minimal but adequate for basic understanding. However, with no annotations and no output schema, it lacks context about behavioral traits (e.g., safety, return format) and doesn't differentiate from siblings, making it incomplete for optimal agent usage in a multi-tool environment.
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 has 0 parameters with 100% coverage, so no parameter documentation is needed. The description appropriately doesn't mention parameters, which is efficient and avoids redundancy. A baseline of 4 is justified as the description doesn't need to compensate for any schema gaps.
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 verb ('List') and resource ('all available prompts'), making the purpose immediately understandable. However, it doesn't differentiate from sibling tools like 'get_prompt' (which likely retrieves a specific prompt), leaving room for confusion about when to use each.
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 provides no guidance on when to use this tool versus alternatives like 'get_prompt' or 'add_prompt'. It lacks context about prerequisites, such as whether authentication is needed or if there are any filtering options, which could help the agent choose appropriately.
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.
5 tool updates
- First observed
add_prompt - First observed
create_structured_prompt - First observed
delete_prompt - First observed
get_prompt - First observed
list_prompts
TDQS
Scored across 5 tools
Each tool has a clearly distinct purpose with no overlap: add_prompt and create_structured_prompt differ in metadata handling, while delete_prompt, get_prompt, and list_prompts each target a specific operation on prompts. An agent can easily distinguish between them.
All tools follow a consistent verb_noun pattern in snake_case (e.g., add_prompt, delete_prompt, list_prompts). The naming is predictable and uniform throughout the set, making it easy for agents to parse.
With 5 tools, this server is well-scoped for managing prompts, covering core operations (create, read, list, delete) without being too sparse or bloated. Each tool serves a clear purpose in the domain.
The toolset provides solid CRUD coverage (add/create, get, list, delete) for prompts, but lacks an update or edit tool, which could be a minor gap for modifying existing prompts. However, agents can work around this by deletion and recreation.
Maintenance
Related MCP Connectors
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
A Model Context Protocol server for Wix AI tools
Self-hosted AI prompt library: prompts, collections, tags, teams, chains. 29 MCP tools for agents.
- PromptOTOAuthcom.promptot
Manage, version, and publish LLM prompts with blocks, variables, and evaluations.
Related MCP Servers
- AlicenseNot gradedqualityCmaintenanceA Model Context Protocol implementation for managing and serving AI prompts with a TypeScript-based architecture in a monorepo structure.42,387,57318MIT
- AlicenseNot gradedqualityDmaintenanceA Model Context Protocol server that helps users create, validate, manage, and optimize prompts using the RISEN framework (Role, Instructions, Steps, Expectations, Narrowing).1MIT
- AlicenseNot gradedqualityCmaintenanceA lightweight, file-based server for managing and serving personal prompt templates with variable substitution support via the Model Context Protocol. It allows users to store, update, and organize prompts in a local directory through integrated MCP tools and CLI assistants.67MIT
- AlicenseAqualityCmaintenanceEnables dynamic prompt management by automatically discovering and serving markdown prompt files with YAML frontmatter via the Model Context Protocol.11MIT