Skip to main content
Glama

rtm-mcp

npm version npm downloads License: MIT GitHub repo CI status

An open-source MCP (Model Context Protocol) server for the Requirements and Test Management for Jira REST API v2. Exposes Requirements, Test Cases, Test Plans, Test Executions, Test Case Executions, Defects, Tree Structure and Automation as MCP tools so any MCP-compatible client (Claude Desktop, IDE extensions, custom agents) can drive RTM directly.

Run it with NPX β€” no install, no clone:

npx rtm-mcp

Features

  • 32 MCP tools covering CRUD, link management, attachments, and CI result import for every RTM resource.

  • Bearer-token auth via RTM_API_TOKEN. Generate a token in Jira: Apps β†’ Requirements and Test Management β†’ β‹― β†’ Rest API authentication β†’ Generate Token.

  • US + EU regions β€” switch via RTM_BASE_URL.

  • Retries + timeouts + jitter baked into the HTTP client (handles 429/5xx/network).

  • Typed errors mapped to friendly MCP error messages β€” never leaks stack traces.

  • Attachment upload accepts base64 payloads (safe for sandboxed MCP clients).

  • Stderr-only logging β€” stdout stays clean for JSON-RPC.


Related MCP server: Jira QMetry MCP Server

Quick start

1. Generate an RTM API token

  1. Open Jira.

  2. Go to Apps β†’ Requirements and Test Management.

  3. Click the three-dot menu (β‹―) β†’ Rest API authentication.

  4. Click Generate Token, pick a user, add a label, click Generate.

  5. Copy the token immediately β€” RTM never shows it again.

2. Run the server

RTM_API_TOKEN=your-token-here npx rtm-mcp

The server speaks MCP over stdio β€” point your MCP client at it.


Claude Desktop setup

Add to claude_desktop_config.json:

US / Global (default URL):

{
  "mcpServers": {
    "rtm": {
      "command": "npx",
      "args": ["-y", "rtm-mcp"],
      "env": {
        "RTM_API_TOKEN": "<your-token-here>",
        "RTM_BASE_URL": "https://rtm-us.deviniti.com/api"
      }
    }
  }
}

EU region:

{
  "mcpServers": {
    "rtm": {
      "command": "npx",
      "args": ["-y", "rtm-mcp"],
      "env": {
        "RTM_API_TOKEN": "<your-token-here>",
        "RTM_BASE_URL": "https://rtm-eu-api.hexygen.com/api"
      }
    }
  }
}

Claude Code CLI setup

Use the claude mcp add command to register the server with Claude Code.

claude mcp add --scope user --transport stdio rtm \
  -e RTM_API_TOKEN=<your-token-here> \
  -e RTM_BASE_URL=https://rtm-us.deviniti.com/api \
  -- npx -y rtm-mcp

EU region:

claude mcp add --scope user --transport stdio rtm \
  -e RTM_API_TOKEN=<your-token-here> \
  -e RTM_BASE_URL=https://rtm-eu-api.hexygen.com/api \
  -- npx -y rtm-mcp

--scope user writes the entry to ~/.claude.json so every Claude Code project on this machine can see the rtm server.

Project scope (only this project)

claude mcp add --scope project --transport stdio rtm \
  -e RTM_API_TOKEN=<your-token-here> \
  -e RTM_BASE_URL=https://rtm-us.deviniti.com/api \
  -- npx -y rtm-mcp

Writes to .mcp.json in the current directory (committed to git).

Verify the registration

claude mcp list           # see all configured servers
claude mcp get rtm        # inspect the rtm entry

Remove the server

claude mcp remove rtm

Configuration

Env var

Required

Default

Purpose

RTM_API_TOKEN

yes

β€”

Bearer token from Jira β†’ Apps β†’ RTM β†’ API Tokens.

RTM_BASE_URL

no

https://rtm-us.deviniti.com/api

EU: https://rtm-eu-api.hexygen.com/api. Confirm from the Rest API authentication panel.

RTM_LOG_LEVEL

no

info

One of debug, info, warn, error. Logs go to stderr only.

RTM_TIMEOUT_MS

no

30000

Per-request HTTP timeout in milliseconds.

RTM_MAX_RETRIES

no

2

Retries on 429/5xx/network errors. Respects Retry-After.

A missing or empty RTM_API_TOKEN aborts startup with a friendly hint.


Available tools

All tools return MCP text content with pretty-printed JSON. 32 tools total, organised by RTM resource below. Use the MCP host's tool-list command to enumerate them at runtime.

Requirements (REQUIREMENTS)

  • rtm_get_requirement β€” fetch by requirementKey

  • rtm_create_requirement β€” create

  • rtm_update_requirement β€” partial update

  • rtm_delete_requirement β€” permanently delete

RTM has no list endpoint for requirements β€” use rtm_get_tree_structure to enumerate them per project.

Test Cases (TEST_CASES)

  • rtm_get_test_case β€” fetch by testCaseKey

  • rtm_create_test_case β€” create (pass stepGroups to define steps)

  • rtm_update_test_case β€” partial update

  • rtm_update_test_case_covered_requirements β€” manage covered-requirement links. Pass exactly one of set / add / remove. Wire call: PUT /api/v2/test-case/{key}/covered-requirements with body { coveredRequirements: { <op>: [...] } }.

rtm_delete_test_case is intentionally not exposed β€” perform deletes via the Jira UI. RTM has no list endpoint β€” use rtm_get_tree_structure.

Test Plans (TEST_PLANS)

Mirrors the 8 endpoints documented in the public RTM REST API:

  • rtm_get_test_plan β€” GET /api/test-plan/{testKey}

  • rtm_create_test_plan β€” POST /api/test-plan

  • rtm_update_test_plan β€” PUT /api/test-plan/{testKey}

  • rtm_delete_test_plan β€” DELETE /api/test-plan/{testKey}

  • rtm_update_test_plan_tc_order β€” PUT /api/test-plan/{testKey}/tc-order with body { order: [...] }

  • rtm_create_test_plan_folder β€” POST /api/test-plan/{testKey}/tree/folders

  • rtm_add_test_case_to_test_plan β€” POST /api/test-plan/{testKey}/testcases with body { testKey: "..." }

  • rtm_remove_test_case_from_test_plan β€” DELETE /api/test-plan/{testKey}/testcases/{tcKey}

RTM has no list endpoint β€” use rtm_get_tree_structure.

Test Executions (TEST_EXECUTIONS)

  • rtm_get_test_execution β€” fetch by testExecutionKey

  • rtm_create_test_execution β€” create by executing a Test Plan (pass testPlanTestKey)

  • rtm_update_test_execution β€” partial update (accepts status, summary, description, priority, owner, customFields)

  • rtm_delete_test_execution β€” permanently delete

RTM has no list endpoint β€” use rtm_get_tree_structure.

Test Case Executions (TCE)

TCE = one row in a Test Execution that records the result of running one Test Case.

  • rtm_get_test_case_execution β€” fetch one TCE (result, executor, comment, defects, steps)

  • rtm_update_test_case_execution β€” partial update. Pass result: "Fail" (or "Pass", "Blocked", …) to change pass/fail status. Wire call: PUT /api/v2/test-case-execution/{key} with body { result: { name: "Fail" } }.

  • rtm_link_defect_to_test_case_execution β€” link a defect to the whole TCE

  • rtm_link_defect_to_test_case_execution_step β€” link a defect to a specific step

  • rtm_list_test_case_execution_attachments β€” list attachments on the TCE

  • rtm_upload_test_case_execution_attachment (base64 input) β€” upload a file to the TCE

  • rtm_get_test_case_execution_attachment β€” fetch one attachment's metadata (returns download URL)

  • rtm_list_test_case_execution_step_attachments β€” list attachments on a single step

  • rtm_upload_test_case_execution_step_attachment (base64 input) β€” upload a file to a specific step

DELETE endpoints on TCE (unlink defect, delete attachment) are intentionally not exposed β€” perform those via the Jira UI or call the underlying REST API directly. The endpoints exist; only the MCP one-shot wrappers were removed because destructive operations belong behind a confirmation flow.

Defects

  • rtm_get_defect β€” fetch by defectKey

  • rtm_create_defect β€” create (pass identifyingTestCases to link to test cases)

  • rtm_update_defect β€” partial update

  • rtm_delete_defect β€” permanently delete

RTM has no list endpoint β€” use rtm_get_tree_structure or jira_search via the Atlassian MCP.

Tree

  • rtm_get_tree_structure β€” fetch the folder tree for a project. Requires numeric projectId (resolve from projectKey via the Jira REST API) and treeType ∈ REQUIREMENTS / TEST_CASES / TEST_PLANS / TEST_EXECUTIONS.

Automation

  • rtm_import_test_results β€” upload a ZIP/TAR.GZ archive of JUnit / NUnit / Cucumber JSON reports; returns a taskId

  • rtm_get_import_status β€” poll a previous taskId until status leaves IMPORTING

Conventions used across every resource

Convention

Description

Link management

One PUT /api/v2/{resource}/{key}/{linkField} endpoint takes the operation (set / add / remove) in the body. There are no separate …/set, …/add, …/remove paths.

Test Case Execution result

The pass/fail status is sent as { result: { name: "Fail" } } (not a plain string). The MCP tool normalises result: "Fail" β†’ { result: { name: "Fail" } } automatically.

Attachments

Upload via multipart with file=@…. List, fetch-by-id, and step-level variants are exposed per the V2 layout.

No DELETE MCP tools for nested resources

Unlinking defects and deleting attachments belong behind an explicit confirmation flow in the MCP client β€” not a one-shot tool call. Use the Jira UI or call the REST API directly.


Examples

"Enumerate the requirements in project ACME."

> // No list endpoint β€” fetch the tree and walk it.
> rtm_get_tree_structure { projectId: 10000, treeType: "REQUIREMENTS" }

"Create a Test Case called 'Login with valid credentials' under folder /Smoke and link it to requirement ACME-42."

> rtm_create_test_case { projectKey: "ACME", summary: "Login with valid credentials", folder: "/Smoke", stepGroups: [...] }
> rtm_update_test_case_covered_requirements { testCaseKey: "<new>", set: ["ACME-42"] }

"Add 3 test cases to plan KAN-52 without replacing the existing set."

> rtm_update_test_plan_included_test_cases {
    testPlanKey: "KAN-52",
    add: ["KAN-30", "KAN-31", "KAN-32"]
  }

"Link defect KAN-100 to test-case execution KAN-53-KAN-46 at step 8517443."

> rtm_link_defect_to_test_case_execution_step {
    testCaseExecutionKey: "KAN-53-KAN-46",
    stepId: "8517443",
    defectTestKey: "KAN-100"
  }

"Mark TCE KAN-53-KAN-46 as Failed and add a comment."

> rtm_update_test_case_execution {
    testCaseExecutionKey: "KAN-53-KAN-46",
    result: "Fail",
    comment: "Login button did not respond after 3 retries"
  }

"Attach a screenshot to step 2 of TCE KAN-53-KAN-46."

> rtm_upload_test_case_execution_step_attachment {
    testCaseExecutionKey: "KAN-53-KAN-46",
    stepId: "8517444",
    filename: "evidence.png",
    contentBase64: "<base64 bytes>",
    mimeType: "image/png"
  }

"Import last night's JUnit XML."

> rtm_import_test_results {
    projectKey: "ACME",
    filename: "junit.zip",
    contentBase64: "<base64>",
    reportType: "JUNIT",
    jobUrl: "https://ci/job/123"
  }
> rtm_get_import_status { taskId: "<returned>" }

Troubleshooting

Symptom

Likely cause / fix

Server exits on startup with RTM_API_TOKEN is required

Token missing or empty. Set it as RTM_API_TOKEN=... before launching.

Tool returns Authentication failed. Verify RTM_API_TOKEN…

Token invalid, expired, or generated for a different user. Re-generate in Jira.

Tool returns Resource not found

The test key doesn't match any issue β€” verify it with rtm_get_* or the tree-structure tool.

Validation failed (HTTP 400)

RTM rejected the payload. The tool message includes the parsed response body.

Rate limited by RTM API (HTTP 429). Retry after Ns.

You're hitting the rate limit. Reduce concurrency or wait.

Network error reaching RTM API

Wrong RTM_BASE_URL (US vs EU mismatch), firewall, or transient network issue.

Tool hangs / times out

Bump RTM_TIMEOUT_MS. Default is 30s; automation imports may take longer.


Development

git clone <repo>
cd rtm-mcp
npm install
npm run build         # compile to dist/
npm test              # unit tests
npm run dev           # run from src/ via tsx
npm run typecheck     # tsc --noEmit

Project layout

src/
β”œβ”€β”€ index.ts                  # entry point (shebang)
β”œβ”€β”€ server.ts                 # McpServer wiring
β”œβ”€β”€ config/                   # env validation + constants
β”œβ”€β”€ client/
β”‚   β”œβ”€β”€ http.ts               # fetch wrapper w/ retry + timeout
β”‚   β”œβ”€β”€ errors.ts             # RTMError hierarchy
β”‚   └── rtm-client.ts         # facade composing all resources
β”œβ”€β”€ resources/                # one file per RTM resource
β”œβ”€β”€ tools/                    # MCP tool registrations
β”œβ”€β”€ schemas/                  # zod input schemas per tool group
└── utils/                    # logger, MCP response helpers
tests/
β”œβ”€β”€ unit/                     # mocked fetch tests
└── integration/              # opt-in live tests (gated by RTM_LIVE=1)

Live integration tests

RTM_API_TOKEN=xxx \
RTM_BASE_URL=https://rtm-us.deviniti.com/api \
RTM_LIVE=1 \
RTM_TEST_PROJECT=ACME \
npm run test:integration

Use a sandbox Jira project. The smoke test creates a Requirement, fetches it, lists nearby, and cleans up.


Publishing

npm login
npm version patch   # or minor / major
npm publish --access public

prepublishOnly runs typecheck, test, build automatically.


Contributing

This is an open-source project β€” issues and PRs are welcome!

  1. Fork the repo: https://github.com/ngocdd/rtm-mcp

  2. Create a feature branch: git checkout -b feat/my-tool

  3. Install + run tests locally:

    npm install
    npm run typecheck
    npm test
  4. Add tests for any new resource method or tool.

  5. Open a Pull Request against main: https://github.com/ngocdd/rtm-mcp/compare

Adding a new RTM endpoint

  1. Add a typed method to the matching src/resources/<resource>.ts module.

  2. Add a zod input schema to src/schemas/<resource>.schema.ts.

  3. Register an MCP tool in src/tools/<resource>.ts.

  4. Add a unit test in tests/unit/.

  5. Run npm run typecheck && npm test.

Reporting bugs

Use https://github.com/ngocdd/rtm-mcp/issues β€” include RTM resource type, endpoint path, expected vs actual response and (redacted) request body.


License

MIT β€” see LICENSE.

Copyright (c) 2026 rtm-mcp contributors. Released under the MIT License; you are free to use, modify and distribute this project in both open-source and proprietary software, provided the copyright notice is preserved.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

No tool schema history has been recorded yet.

Maintenance

ActivityMaintained
ResponsivenessNo issues

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • A
    license
    A
    quality
    D
    maintenance
    An MCP server that exposes the QMetry Test Management for Jira Cloud REST API as tools for MCP-compatible clients. It enables users to manage test cases, test cycles, test executions, test plans, folders, and automation rules through natural language interactions.
    30
    72
    MIT
  • A
    license
    Not graded
    quality
    C
    maintenance
    Jira Cloud MCP server providing Jira-first tools for common workflows and full REST API coverage through a generic request tool.
    640
    MIT
  • F
    license
    Not graded
    quality
    B
    maintenance
    MCP server for Jira Data Center / Server (self-hosted Jira, REST API v2) that exposes core work-item project-management operations (platform + Agile) as MCP tools.
    -

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/ngocdd/rtm-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server