
Prompts.chat
Provides access to a curated collection of AI prompts from prompts.chat with search functionality and template variable support. Lets you discover, retrieve, and save prompts directly in your AI coding assistant.
Proxy server that forwards requests to the prompts.chat API, providing access to a curated collection of prompts with search and filtering capabilities by keyword, type, category, and tag.
What it does
- Search AI prompts by keyword, category, or tag
- Retrieve specific prompts by ID with variable substitution
- Save new prompts to your prompts.chat account
- Browse prompts using MCP prompts capability
- Filter prompts by type and category
Best for
About Prompts.chat
Prompts.chat is a community-built MCP server published by f that provides AI assistants with tools and capabilities via the Model Context Protocol. Prompts.chat — proxy to the prompts.chat API offering a searchable prompt library with filtering by keyword, type, categ It is categorized under developer tools. This server exposes 3 tools that AI clients can invoke during conversations and coding sessions.
How to install
You can install Prompts.chat in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server supports remote connections over HTTP, so no local installation is required.
License
Prompts.chat is released under the MIT license. This is a permissive open-source license, meaning you can freely use, modify, and distribute the software.
Tools (3)
Search for AI prompts by keyword. Returns matching prompts with title, description, content, author, category, and tags. Use this to discover prompts for various AI tasks like coding, writing, analysis, and more.
Get a prompt by ID and optionally fill in its variables. If the prompt contains template variables (like {{variable}}), you will be asked to provide values for them.
Save a new prompt to your prompts.chat account. Requires API key authentication. Prompts are private by default unless configured otherwise in settings.
prompts.chat MCP Server
Access thousands of AI prompts directly in your AI coding assistant
Features
- MCP Prompts - Browse and use prompts directly via MCP prompts capability
- Search Prompts - Search for AI prompts by keyword, category, or tag
- Get Prompt - Retrieve prompt details by ID with variable substitution
- Variable Support - Prompts with
${variable}syntax are automatically handled
🛠️ Installation
Requirements
- Node.js >= v18.0.0
- An MCP-compatible client (Cursor, Windsurf, VS Code, Claude Code, etc.)
Install in Cursor
Add this to your Cursor MCP config file (~/.cursor/mcp.json):
Remote Server (Recommended)
{
"mcpServers": {
"prompts-chat": {
"url": "https://prompts.chat/api/mcp"
}
}
}
Local Server
{
"mcpServers": {
"prompts-chat": {
"command": "npx",
"args": ["-y", "@fkadev/prompts.chat-mcp"]
}
}
}
Install in Windsurf
Add this to your Windsurf MCP config file:
Remote Server (Recommended)
{
"mcpServers": {
"prompts-chat": {
"serverUrl": "https://prompts.chat/api/mcp"
}
}
}
Local Server
{
"mcpServers": {
"prompts-chat": {
"command": "npx",
"args": ["-y", "@fkadev/prompts.chat-mcp"]
}
}
}
Install in VS Code
Add this to your VS Code MCP settings:
Remote Server (Recommended)
"mcp": {
"servers": {
"prompts-chat": {
"type": "http",
"url": "https://prompts.chat/api/mcp"
}
}
}
Local Server
"mcp": {
"servers": {
"prompts-chat": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@fkadev/prompts.chat-mcp"]
}
}
}
Install in Claude Code
Remote Server (Recommended)
claude mcp add --transport http prompts-chat https://prompts.chat/api/mcp
Local Server
claude mcp add prompts-chat -- npx -y @fkadev/prompts.chat-mcp
Install in Zed
Add this to your Zed settings.json:
{
"context_servers": {
"prompts-chat": {
"command": {
"path": "npx",
"args": ["-y", "@fkadev/prompts.chat-mcp"]
}
}
}
}
⚙️ Configuration
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) |
Example with Environment Variables
{
"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"
}
}
}
}
🔨 Available Tools
| 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 PROMPTS_API_KEY. |
📚 MCP Prompts
This server exposes all public prompts from prompts.chat as MCP prompts. Use prompts/list to browse available prompts and prompts/get to retrieve them with variable substitution.
📖 Example Usage
Ask your AI assistant:
Search for prompts about code review
Get the prompt for "act as a linux terminal"
🔗 Links
- prompts.chat - Browse all prompts
- API Documentation - API reference
- GitHub - Source repository
📄 License
ISC
Alternatives
Related Skills
Browse all skillsUI design system toolkit for Senior UI Designer including design token generation, component documentation, responsive design calculations, and developer handoff tools. Use for creating design systems, maintaining visual consistency, and facilitating design-dev collaboration.
Answer questions about the AI SDK and help build AI-powered features. Use when developers: (1) Ask about AI SDK functions like generateText, streamText, ToolLoopAgent, embed, or tools, (2) Want to build AI agents, chatbots, RAG systems, or text generation features, (3) Have questions about AI providers (OpenAI, Anthropic, Google, etc.), streaming, tool calling, structured output, or embeddings, (4) Use React hooks like useChat or useCompletion. Triggers on: "AI SDK", "Vercel AI SDK", "generateText", "streamText", "add AI to my app", "build an agent", "tool calling", "structured output", "useChat".
Master API documentation with OpenAPI 3.1, AI-powered tools, and modern developer experience practices. Create interactive docs, generate SDKs, and build comprehensive developer portals. Use PROACTIVELY for API documentation or developer portal creation.
Use when working with the OpenAI API (Responses API) or OpenAI platform features (tools, streaming, Realtime API, auth, models, rate limits, MCP) and you need authoritative, up-to-date documentation (schemas, examples, limits, edge cases). Prefer the OpenAI Developer Documentation MCP server tools when available; otherwise guide the user to enable `openaiDeveloperDocs`.
Guide for building TypeScript CLIs with Bun. Use when creating command-line tools, adding subcommands to existing CLIs, or building developer tooling. Covers argument parsing, subcommand patterns, output formatting, and distribution.
Integrate Vercel AI SDK applications with You.com tools (web search, AI agent, content extraction). Use when developer mentions AI SDK, Vercel AI SDK, generateText, streamText, or You.com integration with AI SDK.