Claude Desktop Integration¶
Prompt Decorators can be easily integrated with Claude Desktop using the MCP (Model Context Protocol) integration. This document explains how to set up and use the Prompt Decorators MCP server with Claude Desktop.
Overview¶
Claude Desktop supports external tools through the MCP protocol, allowing you to extend Claude's capabilities with custom functionality. The Prompt Decorators MCP integration enables Claude to apply prompt decorators to your prompts, enhancing Claude's responses with structured reasoning, specific output formats, and more.
Prerequisites¶
- Claude Desktop installed on your system
- Python 3.11 or higher
- Prompt Decorators package installed
- MCP SDK installed (
pip install mcp
)
Installation¶
1. Install Required Packages¶
2. Create a Configuration File¶
Claude Desktop requires a configuration file that specifies how to run the MCP server. You can use our provided script to generate this configuration file:
This will create a claude_desktop_config.json
file in your current directory with the appropriate configuration.
Alternatively, you can manually create a configuration file with the following structure:
{
"name": "Prompt Decorators",
"command": "/absolute/path/to/python",
"args": [
"-m",
"prompt_decorators.integrations.mcp.claude_desktop"
],
"cwd": "/absolute/path/to/prompt-decorators",
"env": {
"PYTHONPATH": "/absolute/path/to/prompt-decorators",
"PYTHONUNBUFFERED": "1",
"PYTHONDONTWRITEBYTECODE": "1"
}
}
Replace the paths with the appropriate paths on your system: - /absolute/path/to/python
: The path to your Python executable - /absolute/path/to/prompt-decorators
: The path to the directory containing the prompt-decorators package
3. Configure Claude Desktop¶
- Open Claude Desktop
- Go to Settings (gear icon) > Advanced > Context Sources
- Click "Add Context Source"
- Either:
- Click "Import from File" and select your
claude_desktop_config.json
file -
Or manually enter the configuration details
-
Click "Save"
Using Prompt Decorators in Claude Desktop¶
Once the integration is set up, you can use Prompt Decorators in Claude Desktop through the /tool
command.
Available Tools¶
The integration provides four tools:
list_decorators
: Lists all available prompt decoratorsget_decorator_details
: Gets detailed information about a specific decoratorapply_decorators
: Applies decorators to a promptcreate_decorated_prompt
: Creates a decorated prompt using a predefined template
Example Usage¶
Listing Decorators¶
To see all available decorators:
This will return a list of all available decorators with their descriptions, categories, and parameters.
Getting Decorator Details¶
To get detailed information about a specific decorator:
This will return detailed information about the StepByStep decorator, including its parameters and usage.
Applying Decorators¶
To apply decorators to a prompt:
/tool apply_decorators prompt="Explain quantum computing" decorators=[{"name": "StepByStep"}, {"name": "Academic", "parameters": {"level": "advanced"}}]
This will return a decorated prompt that includes the StepByStep and Academic decorators.
Using Templates¶
To create a decorated prompt using a predefined template:
This will return a decorated prompt using the detailed-reasoning template.
Predefined Templates¶
The integration includes these predefined templates:
- detailed-reasoning: Enhanced critical thinking template with structured reasoning
- academic-analysis: Academic style analysis with citations and formal tone
- explain-simply: Simplify complex topics for broader understanding
- creative-storytelling: Creative writing with storytelling elements
- problem-solving: Structured approach to solving problems
Troubleshooting¶
Connection Issues¶
If Claude Desktop cannot connect to the MCP server:
- Check that the paths in your configuration file are correct
- Ensure that the MCP SDK is installed (
pip install mcp
) - Try running the server manually to check for errors:
- Check that the PYTHONPATH environment variable is set correctly in the configuration
Debugging¶
You can run the Claude Desktop handler with the --verbose