Skip to content

guigui42/packmind-mcp-server

Repository files navigation

Packmind MCP Server

MCP server for Packmind API integration, providing AI assistants access to your organization's knowledge base.

Installation

Option 1: Using NPX (Recommended)

You can use the package directly via NPX from GitHub Packages:

npx @PackmindHub/packmind-mcp-server

For GitHub Copilot (VSCode), add this to your .vscode/mcp.json:

{
  "servers": {
    "packmind": {
      "command": "npx",
      "args": [
        "@PackmindHub/packmind-mcp-server"
      ],
      "env": {
        "PACKMIND_API_KEY": "YOUR_API_KEY"
      }
    }
  }
}

For Cursor, go to "Settings -> MCP -> Add a new global MCP server":

{
  "mcpServers": {
    "packmind": {
      "command": "npx",
      "args": [
        "@PackmindHub/packmind-mcp-server"
      ],
      "env": {
        "PACKMIND_API_KEY": "YOUR_API_KEY"
      }
    }
  }
}

Option 2: Building from Source

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"
          }
      }
  }
}

Publishing

The package is automatically published to GitHub Packages when:

  • A new tag starting with v is pushed (e.g., v1.0.1)
  • The workflow is manually triggered via GitHub Actions

To publish a new version:

  1. Update the version in package.json
  2. Create and push a git tag:
    git tag v1.0.1
    git push origin v1.0.1

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors 3

  •  
  •  
  •