返回市场
奇洛派MCP服务器

奇洛派MCP服务器

作者:quillopy121 星标更新:2025-04-21

项目介绍

<h3 align="center"> <a href="https://quillopy.com">🏠 首页</a> <a href="https://discord.gg/HuyzbYRzwu">💬 Discord</a> <a href="https://quillopy.com/documentation/all">📚 查看文档</a> <a href="https://quillopy.com/add">➕ 添加文档</a> </h4>

Quillopy MCP — 实际文档。实际代码。零幻觉。

<div align="center"> <img src="assets/demo.gif"> </div>

🧠 您的LLM很聪明。但它看不到最新的文档。

❌ 没有Quillopy:

  • 您会得到引用了两年前就已弃用的功能的代码
  • 您会花费时间调试那些本就不该工作的代码
  • 回答模糊、过时或完全错误

✅ 使用Quillopy:

Quillopy将准确的文档直接注入到您的代码助手的上下文中——因此它生成的是真实可运行最新的代码。

无需手动上传。没有过时的信息。没有浪费的时间。


工作原理:

  1. 在Cursor(或支持MCP的任何助手)中提出您的问题
  2. 在后台,Quillopy自动注入正确的文档
  3. 您获得一段可以实际运行的代码完成

要明确激活Quillopy,只需在您的问题中添加@quillopy——或者使用@quillopy[package_name]来指定要拉取的具体库。

无需黑客手段。无需猜测。只有能运行的代码。


尝试以下问题:

“如何编写一个代理浏览网络以获取最新新闻的代码?使用browser-use。@quillopy[browser-use]”
“如何在Supabase中存储和检索JSON数据?@quillopy”
“如何使用最新的NextAuth来保护路由?@quillopy”


开发者为何转向Quillopy:

✅ 零设置——无需上传或配置
✅ 预索引并实时更新600多个库
✅ 优化最小上下文使用(非常适合LLMs)
✅ 支持任何库、任何版本、任何时候

🛠️ 快速入门

1. 创建API密钥

重要: 您需要一个Quillopy API密钥才能使用此MCP服务器。访问https://quillopy.com 注册并获取您的API密钥(免费)。

2. 安装Quillopy MCP

选项1:使用Smithery(推荐)

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

选项2:手动设置

Cursor
  1. 导航至 设置 -> Cursor设置 -> MCP -> + 添加新的全局MCP服务器
  2. 将以下配置复制粘贴到 ~/.cursor/.mcp.json
    {
      "mcpServers": {
        "quillopy": {
          "command": "npx",
          "args": ["-y", "@quillopy/mcp"],
          "env": {
            "QUILLOPY_API_KEY": "<your-api-key>"
          }
        }
      }
    }
    
  3. <your-api-key> 替换为您实际的API密钥

更多信息,请参阅 Cursor MCP文档

Windsurf

将以下内容添加到您的Windsurf MCP配置文件中。更多信息,请参阅 Windsurf MCP文档

{
  "mcpServers": {
    "quillopy": {
      "command": "npx",
      "args": ["-y", "@quillopy/mcp"],
      "env": {
        "QUILLOPY_API_KEY": "<your-api-key>"
      }
    }
  }
}
Claude Desktop

将以下内容添加到您的 claude_desktop_config.json 中。

{
  "mcpServers": {
    "quillopy": {
      "command": "npx",
      "args": ["-y", "@quillopy/mcp"],
      "env": {
        "QUILLOPY_API_KEY": "<your-api-key>"
      }
    }
  }
}
Continue.dev
  1. 打开您的Continue.dev配置文件,格式如下:

    • YAML:
      • MacOS/Linux: ~/.continue/config.yaml
      • Windows: %USERPROFILE%\.continue\config.yaml
    • JSON:
      • 同上,但命名为 config.json
  2. 使用以下任一格式添加配置:

    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>" }
            }
          }
        ]
      }
    }
    
  3. 保存文件——Continue将自动刷新以应用新配置。如果更改未立即生效,请尝试重启您的IDE。

更多信息,请参阅 Continue MCP文档