Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"prompts-chat": {
"url": "https://prompts.chat/api/mcp"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Access thousands of AI prompts directly in your AI coding assistant
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y '@fkadev/prompts.chat-mcp' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked @fkadev/prompts.chat-mcp against OSV.dev.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in ai-ml / writing
Persistent memory using a knowledge graph
Dynamic problem-solving through sequential thought chains
Workspace template + MCP server for Claude Code, Codex CLI, Cursor & Windsurf. Multi-agent knowledge engine (ag-refresh / ag-ask) that turns any codebase into a queryable AI assistant.
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
MCP Security Weekly
Get CVE alerts and security updates for Prompts.Chat MCP Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Access thousands of AI prompts directly in your AI coding assistant
${variable} syntax are automatically handledAdd this to your Cursor MCP config file (~/.cursor/mcp.json):
{
"mcpServers": {
"prompts-chat": {
"url": "https://prompts.chat/api/mcp"
}
}
}
{
"mcpServers": {
"prompts-chat": {
"command": "npx",
"args": ["-y", "@fkadev/prompts.chat-mcp"]
}
}
}
Add this to your Windsurf MCP config file:
{
"mcpServers": {
"prompts-chat": {
"serverUrl": "https://prompts.chat/api/mcp"
}
}
}
{
"mcpServers": {
"prompts-chat": {
"command": "npx",
"args": ["-y", "@fkadev/prompts.chat-mcp"]
}
}
}
Add this to your VS Code MCP settings:
"mcp": {
"servers": {
"prompts-chat": {
"type": "http",
"url": "https://prompts.chat/api/mcp"
}
}
}
"mcp": {
"servers": {
"prompts-chat": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@fkadev/prompts.chat-mcp"]
}
}
}
claude mcp add --transport http prompts-chat https://prompts.chat/api/mcp
claude mcp add prompts-chat -- npx -y @fkadev/prompts.chat-mcp
Add this to your Zed settings.json:
{
"context_servers": {
"prompts-chat": {
"command": {
"path": "npx",
"args": ["-y", "@fkadev/prompts.chat-mcp"]
}
}
}
}
The local server supports the following environment variables:
| Variable | Description |
|---|---|
PROMPTS_API_KEY | Optional API key for authenticated requests |
PROMPTS_QUERY | Optional query string to filter prompts (e.g., users=a,b&categories=c,d&tags=e,f) |
{
"mcpServers": {
"prompts-chat": {
"command": "npx",
"args": ["-y", "@fkadev/prompts.chat-mcp"],
"env": {
"PROMPTS_API_KEY": "your-api-key",
"PROMPTS_QUERY": "users=username&categories=coding&tags=productivity"
}
}
}
}
| Tool | Description |
|---|---|
search_prompts | Search for AI prompts by keyword. Supports filtering by type, category, and tag. |
get_prompt | Get a prompt by ID. Supports variable elicitation for prompts with template variables. |
save_prompt | Save a new prompt to your account. **Requires `PROMP |