@saltedroads/agentplanner-mcp
v1.6.0
Published
Kanban MCP Server for AgentPlanner
Downloads
57
Maintainers
Readme
AgentPlanner MCP Server
Model Context Protocol server for AgentPlanner's Kanban bridge API.
This server is project-first: it can read boards, inspect tickets, move work between active stages, manage tags, export prompts, and restore tasks from the abyss.
Install
npm install -g @saltedroads/agentplanner-mcpRequired environment variables
AGENTPLANNER_URL: Base URL of the deployed AgentPlanner app.AGENTPLANNER_API_KEY: API key created in the AgentPlanner dashboard.AGENTPLANNER_ALLOW_TASK_COMPLETION: Optional. Defaults tofalse. Set totrueonly when you want the MCP server to be able to move tasks intodone.
get_project_board now strictly enforces instruction hydration for markdown files: when .md metadata is returned, the server checks content_hash, fetches new/changed files, and fails if any markdown content cannot be resolved.
Run
AGENTPLANNER_URL=https://your-agentplanner.example.com \
AGENTPLANNER_API_KEY=your_api_key \
AGENTPLANNER_ALLOW_TASK_COMPLETION=false \
agentplanner-mcpExample MCP client configuration
{
"mcpServers": {
"agentplanner": {
"command": "npx",
"args": ["-y", "@saltedroads/agentplanner-mcp"],
"env": {
"AGENTPLANNER_URL": "https://your-agentplanner.example.com",
"AGENTPLANNER_API_KEY": "your_api_key",
"AGENTPLANNER_ALLOW_TASK_COMPLETION": "false"
}
}
}
}Development
npm install
npm run build