JSPM

  • Created
  • Published
  • Downloads 502
  • Score
    100M100P100Q103035F
  • License ISC

MCP server for Tartget Process

Package Exports

  • targetprocess-mcp-server
  • targetprocess-mcp-server/build/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (targetprocess-mcp-server) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

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 Bugs based on user story

  • Retreive TP entities: bugs, user stories

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

  • "add a comment to 145155 card saying 'test'"

  • "write test cases based on 145640 user story"

  • "write detailed test cases based on 145642 user story, format them inside html

    element and add them as a comment"

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


Installation

Local

{
  "mcpServers": {
    "targetprocess": {
      "command": "/Users/mcs/.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_API_VERSION": "v1",
        "TP_OWNER_ID": "<tp-owner-id>", // your user id
        "TP_PROJECT_ID": "<tp-project-id>",
        "TP_TEAM_ID": "<tp-team-id>"
      }
    }
}

From Repository

{
  "mcpServers": {
    "github": {
      "command": "https://github.com/SerhiiMaksymiv/targetprocess-mcp-server.git",
      "env": {
        "GITHUB_PERSONAL_ACCESS_TOKEN": "your_github_token_here",
        ...
        "TP_TEAM_ID": ...
      }
    }
  }
}

Local Development

git clone --recursive https://github.com/SerhiiMaksymiv/targetprocess-mcp-server.git
cd targetprocess-mcp-server

npm install
npm run build