MCP server for Packmind API integration, providing AI assistants access to your organization's knowledge base.
You can use the package directly via NPX from GitHub Packages:
npx @PackmindHub/packmind-mcp-serverFor 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"
}
}
}
}- Use node 20
- Run the following command
npm install
npm run build
- 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"
]
}
}
}- 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"
}
}
}
}The package is automatically published to GitHub Packages when:
- A new tag starting with
vis pushed (e.g.,v1.0.1) - The workflow is manually triggered via GitHub Actions
To publish a new version:
- Update the version in
package.json - Create and push a git tag:
git tag v1.0.1 git push origin v1.0.1