feat(cli): add 'mcp' command to start MCP server for AI tools

This commit is contained in:
Fatih Kadir Akın
2026-01-22 16:29:46 +03:00
parent bdbf138301
commit 21a337977c
2 changed files with 35 additions and 0 deletions

View File

@@ -134,6 +134,29 @@ npx prompts.chat
### MCP Server
Use prompts.chat as an MCP server in your AI tools.
**Remote (recommended):**
```json
{
"mcpServers": {
"prompts.chat": {
"url": "https://prompts.chat/api/mcp"
}
}
}
```
**Local:**
```json
{
"mcpServers": {
"prompts.chat": {
"command": "npx",
"args": ["-y", "prompts.chat", "mcp"]
}
}
}
```
📖 [MCP Documentation](https://prompts.chat/docs/api)
---