一个提供优秀prompt的Model Context Protocol (MCP)的服务器,用于根据用户任务需求提供预设的prompt模板,帮助Cline/Cursor/Windsurf...更高效地执行各种任务。服务器将预设的prompt作为工具(tools)返回,以便在Cursor和Windsurf等编辑器中更好地和使用。提供tool和prompt两种形式
Quick Install
Copy the config for your editor. Some servers may need additional setup — check the README.
Add to claude_desktop_config.json:
{
"mcpServers": {
"mcp-prompt-server-go": {
"command": "go",
"args": [
"run",
"github.com/smallnest/mcp-prompt-server-go@latest"
]
}
}
}
Run in terminal:
claude mcp add mcp-prompt-server-go go run github.com/smallnest/mcp-prompt-server-go@latest
Add to .cursor/mcp.json:
{
"mcpServers": {
"mcp-prompt-server-go": {
"command": "go",
"args": [
"run",
"github.com/smallnest/mcp-prompt-server-go@latest"
]
}
}
}