Quillopy将准确的文档直接注入到您的代码助手的上下文中——因此它生成的是真实、可运行、最新的代码。
无需手动上传。没有过时的信息。没有浪费的时间。
要明确激活Quillopy,只需在您的问题中添加@quillopy——或者使用@quillopy[package_name]来指定要拉取的具体库。
无需黑客手段。无需猜测。只有能运行的代码。
“如何编写一个代理浏览网络以获取最新新闻的代码?使用browser-use。@quillopy[browser-use]”
“如何在Supabase中存储和检索JSON数据?@quillopy”
“如何使用最新的NextAuth来保护路由?@quillopy”
✅ 零设置——无需上传或配置
✅ 预索引并实时更新600多个库
✅ 优化最小上下文使用(非常适合LLMs)
✅ 支持任何库、任何版本、任何时候
重要: 您需要一个Quillopy API密钥才能使用此MCP服务器。访问https://quillopy.com 注册并获取您的API密钥(免费)。
Smithery提供了最简单的方法来安装和配置Quillopy MCP,适用于各种AI助手平台。
# Claude
npx -y @smithery/cli@latest install @quillopy/quillopy-mcp --client claude
# Cursor
npx -y @smithery/cli@latest install @quillopy/quillopy-mcp --client cursor
# Windsurf
npx -y @smithery/cli@latest install @quillopy/quillopy-mcp --client windsurf
更多详情和额外集成选项,请访问 https://smithery.ai/server/@quillopy/quillopy-mcp
设置 -> Cursor设置 -> MCP -> + 添加新的全局MCP服务器~/.cursor/.mcp.json
{
"mcpServers": {
"quillopy": {
"command": "npx",
"args": ["-y", "@quillopy/mcp"],
"env": {
"QUILLOPY_API_KEY": "<your-api-key>"
}
}
}
}
<your-api-key> 替换为您实际的API密钥更多信息,请参阅 Cursor MCP文档
将以下内容添加到您的Windsurf MCP配置文件中。更多信息,请参阅 Windsurf MCP文档
{
"mcpServers": {
"quillopy": {
"command": "npx",
"args": ["-y", "@quillopy/mcp"],
"env": {
"QUILLOPY_API_KEY": "<your-api-key>"
}
}
}
}
将以下内容添加到您的 claude_desktop_config.json 中。
{
"mcpServers": {
"quillopy": {
"command": "npx",
"args": ["-y", "@quillopy/mcp"],
"env": {
"QUILLOPY_API_KEY": "<your-api-key>"
}
}
}
}
打开您的Continue.dev配置文件,格式如下:
~/.continue/config.yaml%USERPROFILE%\.continue\config.yamlconfig.json使用以下任一格式添加配置:
YAML格式:
experimental:
modelContextProtocolServers:
- transport:
type: stdio
command: node
args: ["-y", "@quillopy/mcp"]
env: { "QUILLOPY_API_KEY": "<your-api-key>" }
JSON格式:
{
"experimental": {
"modelContextProtocolServers": [
{
"transport": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@quillopy/mcp"],
"env": { "QUILLOPY_API_KEY": "<your-api-key>" }
}
}
]
}
}
保存文件——Continue将自动刷新以应用新配置。如果更改未立即生效,请尝试重启您的IDE。
更多信息,请参阅 Continue MCP文档