prompts.chat MCP Server for VS Code
io.github.f/prompts.chat-mcp
Search and retrieve AI prompts from prompts.chat, the social platform for AI prompts.
client:VS Code
transport:stdio
runtime:npm
Install prompts.chat MCP Server in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "prompts-api-key",
"description": "PROMPTS_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "prompts-query",
"description": "PROMPTS_QUERY",
"password": true
}
],
"servers": {
"prompts.chat-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@fkadev/prompts.chat-mcp"
],
"env": {
"PROMPTS_API_KEY": "${input:prompts-api-key}",
"PROMPTS_QUERY": "${input:prompts-query}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs