Packmind

Access and manage your team's coding best practices and knowledge base from Packmind.

Setup

  1. Use node 20
  2. Run the following command
npm install
npm run build

Github Copilot (VSCode)

  1. Create a .vscode/mcp.json file Add a new block protomind
{
  "servers": {
      "protomind": {
          "command": "node",
          "args": [
              "<PATH_TO_YOUR_HOME>/mcp-server/build/index.js"
          ]
      }
  }
}

Cursor

  1. Go to "Settings -> MCP -> Add a new global MCP server" Add a new block packmind
{
  "mcpServers": {
      "packmind": {
          "command": "node",
          "args": [
              "<PATH_TO_YOUR_HOME>/packmind-mcp-server/build/index.js"
          ],
          "env": {
            "PACKMIND_API_KEY": "YOUR_API_KEY"
          }
      }
  }
}

Related Servers