Command Palette

Search for a command to run...

UnylyUnyly
Весь каталог

Tp

БесплатноНе проверен

Custom MCP server for TargetProcess with image/attachment support

GitHubEmbed

Описание

Custom MCP server for TargetProcess with image/attachment support

README

Custom MCP server for TargetProcess with first-class image / attachment support.

Tools

  • tp_query, tp_search_cards, tp_get_card, tp_create_card, tp_update_card — read/write cards.
  • tp_list_comments, tp_add_comment — comments (inline images returned as image blocks).
  • tp_list_attachments, tp_get_attachment — list and download attachments (images returned inline).
  • tp_upload_attachmentupload a file to an entity. Pass either filePath (an absolute local path) or base64 data + fileName. MIME type is inferred from the extension when omitted.
  • tp_current_releases, tp_release_items, plus meta lookups (tp_projects, tp_teams, tp_users).

Environment

Var Required Description
TP_TOKEN yes TP access token (query-param auth)
TP_BASE_URL yes e.g. https://your-company.tpondemand.com
TP_OWNER_ID no Your TP user id — default owner for release queries
TP_TEAM_ID no Default team id for release queries

Build & run

npm install
npm run build
node dist/index.js

npm run build writes the bundle to dist/index.js — that is the path you point Claude Code at.

Setup in Claude Code

1. Get your environment values

  • TP_TOKEN — in TargetProcess: top-right avatar → Access Tokens → generate a new one. Treat it like a password; it is bound to your user account.
  • TP_BASE_URL — the root URL of your TP instance, without a trailing slash (e.g. https://your-company.tpondemand.com).
  • TP_OWNER_ID — your TP user id. Open your profile in TP; the id is the numeric value in the URL. If you can't find it, register the server first and ask Claude to look it up by email via tp_users.
  • TP_TEAM_ID — id of the team whose releases you want as the default scope. Find it in the TP URL when you open the team's board.

2. Register the server

Run once in PowerShell (Windows) or your shell of choice. Use absolute paths — Claude Code does not expand ~ or relative paths in the command argument.

claude mcp add targetprocess -s user `
  -e TP_TOKEN=<your-token> `
  -e TP_BASE_URL=https://your-company.tpondemand.com `
  -e TP_OWNER_ID=<your-user-id> `
  -e TP_TEAM_ID=<your-team-id> `
  -- node C:\path\to\tp-mcp-server\dist\index.js

Bash / macOS / Linux equivalent:

claude mcp add targetprocess -s user \
  -e TP_TOKEN=<your-token> \
  -e TP_BASE_URL=https://your-company.tpondemand.com \
  -e TP_OWNER_ID=<your-user-id> \
  -e TP_TEAM_ID=<your-team-id> \
  -- node /absolute/path/to/tp-mcp-server/dist/index.js

Flags:

  • -s user — register at user scope, so the server is available in every project on this machine. Use -s project if you only want it in the current working directory.
  • -e KEY=VALUE — environment variables passed to the server process.
  • Everything after -- is the command + args used to spawn the server (stdio transport).

3. Verify

claude mcp list

Expected output:

targetprocess: node C:\path\to\tp-mcp-server\dist\index.js - ✓ Connected

If the status is ✗ Failed to connect, inspect the configured entry:

claude mcp get targetprocess

Common causes:

  • Wrong absolute path to dist/index.js — fix with claude mcp remove targetprocess -s user and re-add.
  • Forgot npm run builddist/ won't exist.
  • TP_TOKEN invalid / expired — regenerate in TP.

4. Manual config alternative

If you prefer editing JSON, add this under mcpServers in ~/.claude.json (Windows: %USERPROFILE%\.claude.json) instead of running claude mcp add:

"targetprocess": {
  "type": "stdio",
  "command": "node",
  "args": ["C:\\path\\to\\tp-mcp-server\\dist\\index.js"],
  "env": {
    "TP_TOKEN": "<your-token>",
    "TP_BASE_URL": "https://your-company.tpondemand.com",
    "TP_OWNER_ID": "<your-user-id>",
    "TP_TEAM_ID": "<your-team-id>"
  }
}

JSON paths on Windows need double backslashes.

Updating

After pulling new changes from the repo:

git pull
npm install
npm run build

Claude Code picks up the rebuilt dist/index.js on its next launch — no need to re-register the server.

Removing

claude mcp remove targetprocess -s user

from github.com/VadymKolesnyk/tp-mcp-server

Установка Tp

У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.

▸ github.com/VadymKolesnyk/tp-mcp-server

FAQ

Tp MCP бесплатный?

Да, Tp MCP бесплатный — установка в пару кликов через Unyly без оплаты.

Нужен ли API-ключ для Tp?

Нет, Tp работает без API-ключей и переменных окружения.

Tp — hosted или self-hosted?

Self-hosted: сервер запускается локально на твоей машине командой из раздела установки.

Как установить Tp в Claude Desktop, Claude Code или Cursor?

Открой Tp на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.

Похожие MCP

Compare Tp with

Не уверен что выбрать?

Найди свой стек за 60 секунд

Автор?

Embed-бейдж для README

Похожее

Все в категории media