loading…
Search for a command to run...
loading…
A local-only MCP server that uses SQLite to store, search, and manage a personal library of AI prompts. It enables developers to organize and reuse prompts acro
A local-only MCP server that uses SQLite to store, search, and manage a personal library of AI prompts. It enables developers to organize and reuse prompts across multiple AI clients like Claude and Cursor while keeping all data on their local machine.
A local-only MCP (Model Context Protocol) server for managing AI prompts with SQLite storage. Designed for individual developers to organize prompts without complex web services.
Your personal prompt library - Store, search, and reuse prompts across all your AI tools.
No installation needed. Just use npx:
npx -y @mhoshdev/prompt-store-mcp@latest
Note: Requires Node.js 20+.
Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"prompt-store": {
"command": "npx",
"args": ["-y", "@mhoshdev/prompt-store-mcp@latest"]
}
}
}
Add to your Cursor MCP settings:
{
"mcpServers": {
"prompt-store": {
"command": "npx",
"args": ["-y", "@mhoshdev/prompt-store-mcp@latest"]
}
}
}
Add to your Windsurf MCP configuration:
{
"mcpServers": {
"prompt-store": {
"command": "npx",
"args": ["-y", "@mhoshdev/prompt-store-mcp@latest"]
}
}
}
For CLI access (e.g.,
--reset):npx -y @mhoshdev/prompt-store-mcp@latest --reset
# Start MCP server (default)
npx -y @mhoshdev/prompt-store-mcp@latest
# Reset database (clear all data, keep schema)
npx -y @mhoshdev/prompt-store-mcp@latest --reset
| Tool | Description |
|---|---|
add_prompt |
Store a new prompt with optional tags |
list_prompts |
List prompts with pagination |
get_prompt |
Retrieve full prompt by ID |
update_prompt |
Update prompt title, content, and tags |
delete_prompt |
Permanently remove a prompt |
search_prompts |
Search by keyword in title/content |
filter_by_tags |
Filter prompts by tags (OR logic) |
list_tags |
List all tags with prompt counts |
Use add_prompt with:
- title: "Code Review Assistant"
- content: "You are a senior code reviewer. Analyze code for bugs, security issues, and suggest improvements."
- tags: ["coding", "review"]
Use search_prompts with:
- query: "review"
Use filter_by_tags with:
- tags: ["coding", "review"]
~/.prompt-store/prompts.db# Install dependencies
pnpm install
# Build
pnpm build
# Run tests
pnpm test
# Type check
pnpm typecheck
node --versionls -la ~/.prompt-storecp ~/.prompt-store/prompts.db ~/.prompt-store/prompts.db.backupnpx -y @mhoshdev/prompt-store-mcp@latest --resetnpx -y @mhoshdev/prompt-store-mcp@latest runs successfully in terminalMIT
Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"prompt-store-mcp": {
"command": "npx",
"args": []
}
}
}