HacknPlan MCP
Enables Claude to manage game development projects on HacknPlan, including tasks, boards, milestones, and GDD documents through natural language.
README
HacknPlan MCP Server
Connect Claude directly to your HacknPlan game dev projects.
Setup
1. Get your API key
- Log in to HacknPlan
- Go to Profile → Settings → API Beta → Create
- Name it (e.g.
claude-mcp), select desired scopes, click Create - Copy the key
2. Install dependencies
npm install
3. Configure Claude Desktop
Add this to your claude_desktop_config.json:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"hacknplan": {
"command": "node",
"args": ["/absolute/path/to/hacknplan-mcp/index.js"],
"env": {
"HACKNPLAN_API_KEY": "your_api_key_here"
}
}
}
}
4. Restart Claude Desktop
Available Tools
Projects
| Tool | Description |
|---|---|
list_projects |
List all projects in your workspace |
get_project |
Get project details |
create_project |
Create a new project (costMetric required: "points" or "hours") |
update_project |
Partially update a project's name or description (PATCH) |
replace_project |
Full replacement of a project (PUT) |
delete_project |
Permanently delete a project |
close_project |
Archive (close) a project |
reopen_project |
Reopen a closed project |
get_project_metrics |
Get progress and burndown metrics for a project |
change_project_owner |
Transfer project ownership to another user |
Boards
| Tool | Description |
|---|---|
list_boards |
List boards in a project (optionally include closed) |
get_board |
Get board details |
create_board |
Create a new board (optionally attach to a milestone) |
update_board |
Partially update a board (PATCH) |
replace_board |
Full replacement of a board (PUT) |
delete_board |
Permanently delete a board (optionally remove work items) |
close_board |
Archive (close) a board |
reopen_board |
Reopen a closed board |
get_board_metrics |
Get progress and burndown metrics for a board |
set_default_board |
Set the default board for a project |
clear_default_board |
Remove the default board setting |
Milestones
| Tool | Description |
|---|---|
list_milestones |
List milestones in a project |
get_milestone |
Get milestone details (optionally embed boards) |
create_milestone |
Create a milestone with optional dates |
update_milestone |
Partially update a milestone (PATCH) |
replace_milestone |
Full replacement of a milestone (PUT) |
delete_milestone |
Permanently delete a milestone (optionally cascade to boards/work items) |
close_milestone |
Mark a milestone complete |
reopen_milestone |
Reopen a closed milestone |
get_milestone_metrics |
Get progress and burndown metrics for a milestone |
Work Items
| Tool | Description |
|---|---|
list_work_items |
List work items with filters (board, milestone, stage, category, user, completion, search, sort) |
get_work_item |
Get full work item details |
create_work_item |
Create a task with title, description, priority, assignee, estimate, due date, tags |
update_work_item |
Update any field on a work item (PATCH) |
clone_work_item |
Create a copy of an existing work item |
delete_work_item |
Delete a work item |
list_work_item_attachments |
List attachments on a work item |
get_work_item_attachment |
Get a specific work item attachment |
delete_work_item_attachment |
Delete a work item attachment |
Categories
| Tool | Description |
|---|---|
list_categories |
List work item categories in a project |
get_category |
Get category details |
create_category |
Create a new category |
update_category |
Partially update a category (PATCH) |
delete_category |
Delete a category |
Stages
| Tool | Description |
|---|---|
list_stages |
List workflow stages in a project |
get_stage |
Get stage details |
create_stage |
Create a new stage |
update_stage |
Partially update a stage (PATCH) |
delete_stage |
Delete a stage |
Importance Levels
| Tool | Description |
|---|---|
list_importance_levels |
List importance levels in a project |
get_importance_level |
Get importance level details |
create_importance_level |
Create a new importance level |
update_importance_level |
Partially update an importance level (PATCH) |
delete_importance_level |
Delete an importance level |
Users & Roles
| Tool | Description |
|---|---|
get_current_user |
Get your own user info |
list_project_users |
List users in a project |
get_project_user |
Get a specific user's project membership |
add_project_user |
Add a user to a project |
update_project_user |
Partially update a user's project membership (PATCH) |
replace_project_user |
Full replacement of a user's project membership (PUT) |
add_team_to_project |
Add an entire team to a project |
list_project_roles |
List roles in a project |
get_project_role |
Get a specific role |
create_project_role |
Create a new role |
update_project_role |
Partially update a role (PATCH) |
replace_project_role |
Full replacement of a role (PUT) |
delete_project_role |
Delete a role |
Tags
| Tool | Description |
|---|---|
list_project_tags |
List tags in a project |
create_project_tag |
Create a new tag (with optional hex color) |
update_project_tag |
Partially update a tag (PATCH) |
replace_project_tag |
Full replacement of a tag (PUT) |
delete_project_tag |
Delete a tag |
Design Elements (GDD)
| Tool | Description |
|---|---|
list_design_elements |
List design elements (GDD documents) in a project |
get_design_element |
Get design element details |
create_design_element |
Create a new design element |
update_design_element |
Partially update a design element (PATCH) |
replace_design_element |
Full replacement of a design element (PUT) |
delete_design_element |
Delete a design element |
get_design_element_metrics |
Get metrics for a design element |
list_design_element_types |
List design element types in a project |
get_design_element_type |
Get a specific design element type |
create_design_element_type |
Create a new design element type |
update_design_element_type |
Partially update a design element type (PATCH) |
replace_design_element_type |
Full replacement of a design element type (PUT) |
delete_design_element_type |
Delete a design element type |
list_design_element_attachments |
List attachments on a design element |
get_design_element_attachment |
Get a specific design element attachment |
delete_design_element_attachment |
Delete a design element attachment |
list_design_element_comments |
List comments on a design element |
create_design_element_comment |
Add a comment to a design element |
update_design_element_comment |
Update a design element comment (PUT) |
delete_design_element_comment |
Delete a design element comment |
Events, Files & Webhooks
| Tool | Description |
|---|---|
list_project_events |
List activity events for a project |
list_project_files |
List files stored in a project |
delete_project_file |
Delete a file from a project |
get_project_storage |
Get file storage quota and usage |
list_webhook_event_types |
List all available webhook event types |
list_webhooks |
List webhooks configured for a project |
create_webhook |
Create a webhook for a project |
get_webhook |
Get webhook details |
update_webhook |
Partially update a webhook (PATCH) |
replace_webhook |
Full replacement of a webhook (PUT) |
delete_webhook |
Delete a webhook |
Example prompts
- "Show me all work items in my Maze Racer project"
- "Create a task called 'Implement leaderboard' in the Programming board, high priority"
- "Close the current milestone and list what's still open"
- "What tasks are assigned to me and not completed?"
- "Create a GDD document for the combat system"
- "Set up a webhook to notify my server when work items change"
Notes
- The HacknPlan API is still in public beta — rate limit is 5 calls/second
- API key needs appropriate scopes for the operations you want to perform
- Categories, stages, and importance levels return 403 on write operations for most accounts (list/get still work)
create_work_itemrequiresboardId;importanceLevelIddefaults to 3 (Normal)- When creating a work item with a
stageId, the handler issues a follow-up PATCH since the API ignoresstageIdon POST
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。