targetprocess-mcp-server
Enables AI assistants to query, create, and manage Targetprocess entities like user stories, bugs, tasks, and features through natural language and structured tools.
README
Targetprocess MCP Server
An MCP (Model Context Protocol) server that enables AI assistants to interact with the Targetprocess project management platform through structured tools and natural language workflows.
This server exposes powerful capabilities for querying, creating, and managing Targetprocess entities such as user stories, bugs, tasks, and features.
It acts as a bridge between LLM agents and the Targetprocess API, providing:
- Structured tool-based access
- Semantic, natural-language-driven workflows
Features
-
Create standalone bugs or bugs linked to a user story/bug card
-
Retrieve TP entities: bugs, user stories, features, releases
-
LLM-Friendly Tools
- Designed for Claude MCP AI agents
Use Cases examples:
- "Show me currently active release"
- "write me test cases based on 145322 tp user story"
- "write detailed test cases based on 145642 bug, format them inside html <div> element, create a test plan and add test cases to it"
- "add a comment to 145155 card saying 'test'"
- "write test cases based on 145640 feature"
- "create a bug based on 145637 user story where Add Tile flyout (for a Static Tile) not show"
- "search for a card with 'Text Element' title"
Available tools:
Releases
get_current_releases— List all current releases (no params needed)get_release_bugs— Get bugs for a release (name, optional results)get_release_features— Get features for a release (name, optional results)get_release_user_stories— Get user stories for a release (name, optional results)get_release_user_stories_with_description— Same as above but includes full descriptions (name, withDescription)get_release_open_bugs— Get only active/open bugs for a release (name, withDescription, optional results)get_release_open_user_stories— Get only active/open user stories for a release (name, withDescription, optional results)
Features
get_feature_user_stories— Get all user stories for a feature by its ID (id)get_not_covered_user_stories_in_feature— Get user stories in a feature not yet covered by tests, includescoveredfield based on "Test Automation" custom field (id)
User Stories
get_user_story_bugs— Get all bugs linked to a user story by its ID (id)
Tasks
get_in_progress_tasks_and_bugs— Get all Tasks and Bugs currently in "In Progress" state assigned to a given user (userId)create_task— Create a new task linked to a user story (title, userStoryId, optional description)list_my_user_stories— List User Stories assigned to the current user, optionally filtered by state (optional state, optional take, optional skip)list_my_bugs— List Bugs assigned to the current user, optionally filtered by state (optional state, optional take, optional skip)
Cards — Read
get_card_current_status— Get EntityState, TeamState, and assigned teams for a card (id, optional resourceType: UserStory | Bug | Feature, default: UserStory)get_bug_content— Fetch full content of a bug by ID (id)get_user_story_content— Fetch full content of a user story by ID (id)get_bug_comments— Get comments on a bug (id, optional results)get_user_story_comments— Get comments on a user story (id, optional results)get_user_story_test_cases— Fetch the linked test plan and all its test cases (with steps) for a user story (resourceId)search_tp_cards— Search TP cards by keyword or phrase in description (keyword, optional entityType: UserStories | Bugs, default: UserStories)
Cards — Write
add_comment— Post a comment to any card (id, comment)add_comment_with_user— Post a comment to any card and mention a specific user (id, comment, user object fromget_users)update_bug— Update an existing bug (id, optional title, optional bugContent, optional origin, optional projectId, optional teamId, optional entityStateId)Resolve state name → ID via
get_bug_workflowsbefore passingentityStateIdupdate_user_story— Update an existing user story (id, optional title, optional description, optional projectId, optional teamId, optional entityStateId)Resolve state name → ID via
get_user_story_workflowsbefore passingentityStateIdupdate_user_story_state— Update the sub-state (team assignment entity state) for a user story (id, optional entityStateId, optional teamId, optional teamAssignmentId)- Call
get_user_story_contentfirst to find the assigned team andteamAssignmentId - Call
get_user_story_workflowsto resolve the target state name →entityStateId
- Call
create_bug— Create a standalone bug (title, bugContent, optional origin, optional projectId, optional teamId, optional entityStateName)originaccepted values:Production - Customer,Production - Internal,Pre-Release - Customer,Pre-Release - Internal,Regression - Dev01,Regression - Team Env,Manual QA(default),Developer Raised,OperationsentityStateNameaccepted values:Backlog,In Triage,Ready for Dev,In Dev,Blocked,PR Raised,Ready for Feature PCH,Ready for Feature QA,In Feature QA,Failed Feature QA,Ready for Merge,Ready to Deploy to Dev01,Ready for Dev01 QA,In Dev01 QA,Failed Dev01 QA,Ready to Deploy to prod,Closed
[!NOTE]
projectIdandteamIdare optional — fall back toTP_PROJECT_IDandTP_TEAM_IDfrom config
create_bug_based_on_card— Create a bug linked to an existing user story or bug card (card object with id+type, title, bugContent, optional origin, optional projectId, optional teamId)
[!NOTE]
projectIdandteamIdare optional — fall back toTP_PROJECT_IDandTP_TEAM_IDfrom config
create_user_story— Create a new user story (title, optional description, optional featureId, optional releaseId, optional projectId, optional teamId)
[!NOTE]
projectIdandteamIdare optional — fall back toTP_PROJECT_IDandTP_TEAM_IDfrom config
create_feature— Create a new feature (title, optional description, optional epicId, optional releaseId, optional projectId, optional teamId)
[!NOTE]
projectIdandteamIdare optional — fall back toTP_PROJECT_IDandTP_TEAM_IDfrom config
create_test_plan— Create a test plan linked to a UserStory, Bug, or Feature (title, resourceId, optional resourceType, optional description/startDate/endDate)
[!NOTE]
requiresTP_PROJECT_ID,
Test Case Workflows
write_test_cases— Fetch a card (UserStory, Bug, or Feature) by ID and trigger the full test case writing workflow: Claude analyzes the card, generates detailed test cases covering happy path, edge cases, and error scenarios, creates a linked test plan viacreate_test_plan, then callsadd_test_cases_to_test_plan. Each test case description contains Preconditions and Test Type as HTML; steps are passed as a structured array (resourceId, optional resourceType)add_test_cases_to_test_plan— Add pre-generated test cases to an existing test plan. Each test case has aname, an HTMLdescription(Preconditions and Test Type only), and astepsarray of{ description, result }objects — steps are created via the TP test step API rather than embedded in the description (testPlanId, testCases array of {name, description, steps})
Processes & Workflows
get_processes— Get all Targetprocess processes (no params needed)get_process_workflows— Get workflows for a specific process (processId)get_bug_workflows— Get all bug entity states/workflows for the configured process (no params needed)get_user_story_workflows— Get all user story entity states/workflows for the configured process (no params needed)
Projects
get_projects— Get all Targetprocess projects (no params needed)
Teams
get_teams— Get all Targetprocess teams returning id and name (no params needed)get_teams_and_team_assignments— Get all teams and team assignments (id and name for each) (no params needed)
User
get_logged_in_user— Get the currently logged-in user's info (no params needed)get_users— Get all Targetprocess users (no params needed)get_user_by_id— Get a single Targetprocess user by their ID (id)
Time Tracking
log_time— Log time spent on a Task, User Story, or Bug (entityId, entityType: Task | UserStory | Bug, hours, optional description, optional date)get_my_time_logs— Get recent time log entries submitted by the current user (optional take)
Developer Tools
get_commit_message— Returns a formatted commit message string for a task or bug ID (id, type: task | bug)Format for task on a user story:
F#<featureId> US#<userStoryId> T#<taskId> <title>Format for bug on a user story:F#<featureId> US#<userStoryId> B#<bugId> <title>Format for standalone bug:B#<bugId> <title>
Installation
Local Installation for Development
{
"mcpServers": {
"targetprocess": {
"command": "/Users/xxx/.config/nvm/versions/node/v22.14.0/bin/node",
"args": [
"/path/to/repository"
],
"env": {
"TP_TOKEN": "<your-tp-token>" // Settings -> Authentication and Security -> New Access Token,
"TP_BASE_URL": "<tp-api-endpoint>",
"TP_OWNER_ID": "<tp-owner-id>", // your user id
"TP_PROJECT_ID": "<tp-project-id>"
"TP_TEAM_ID": "<tp-team-id>"
}
}
}
Claude Desktop
[!NOTE] You need to have
nodeandnpminstalled on your machine.
{
"mcpServers": {
"targetprocess": {
"command": "npx",
"args": [
"-y",
"targetprocess-mcp-server"
],
"env": {
"TP_TOKEN": "<your-tp-token>" // Settings -> Authentication and Security -> New Access Token,
"TP_BASE_URL": "<tp-api-endpoint>", // required
"TP_OWNER_ID": "<tp-owner-id>", // required, your user id
"TP_PROJECT_ID": "<tp-project-id>", // optional see available tools
"TP_TEAM_ID": "<tp-team-id>" // optional see available tools
}
}
},
}
Claude Code
claude mcp add targetprocess -s user \
-e TP_TOKEN=<your-tp-token> -e TP_BASE_URL=<tp-api-endpoint> -- npx -y targetprocess-mcp-server
Local Development
git clone --recursive https://github.com/SerhiiMaksymiv/targetprocess-mcp-server.git
cd targetprocess-mcp-server
npm install
npm run build
Testing
Tests live in tests/ and use Vitest. All tool handlers are extracted to src/handlers/ and tested with mocked TpClient instances — no network calls are made.
npx vitest run # run all tests once
npx vitest # watch mode
Coverage
33 of 46 tools (72%) are covered by unit tests.
| Test file | Handlers covered |
|---|---|
get_bug_content.test.ts |
get_bug_content |
get_user_story_content.test.ts |
get_user_story_content |
get_commit_message.test.ts |
get_commit_message |
get_current_releases.test.ts |
get_current_releases |
get_projects.test.ts |
get_projects |
get_logged_in_user.test.ts |
get_logged_in_user |
get_user_by_id.test.ts |
get_user_by_id |
release_tools.test.ts |
get_release_user_stories, get_release_bugs, get_release_features, get_release_open_bugs, get_release_open_user_stories |
user_team_tools.test.ts |
get_users, get_teams, get_teams_and_team_assignments |
comment_tools.test.ts |
add_comment, get_user_story_comments, get_bug_comments |
creation_tools.test.ts |
create_bug, create_user_story, create_feature, create_task, update_bug, update_user_story_state |
my_work_tools.test.ts |
get_in_progress_tasks_and_bugs, list_my_user_stories, list_my_bugs, log_time, get_my_time_logs |
entity_tools.test.ts |
get_feature_user_stories, get_user_story_bugs, get_card_current_status |
推荐服务器
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 模型以安全和受控的方式获取实时的网络信息。