https://docs.cursor.com/context/model-context-protocol

좋은 MCP 서버를 제공하는 곳

https://cursor.directory/mcp

https://glama.ai/mcp/servers

https://smithery.ai/

MCP란?(Model Context Protocol)

Cursor에서 agentic LLMs 에 사용자 지정 도구를 제공할 수 있는 개방형 프로토콜로, 즉 외부 도구나 서비스와 연결할 수 있게 해주는 프로토콜이다.

Cursor Settings > Features > MCP and click on the + Add New MCP Server 버튼을 클릭해 추가가 가능하다.

image.png

3. 예시 설정 (GitHub MCP 서버)

GitHub 저장소에 접근하는 MCP 서버를 설정한다고 가정해볼게요:

{
  "mcpServers": {
    "github": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-github"],
      "env": {
        "GITHUB_TOKEN": "your-github-token"
      }
    }
  }
}