Provider REST API

Project management

Connect Claude to Jira

Search, read, file, update, and transition issues across your Jira Cloud projects. Toolspoke puts 12 of its actions behind one MCP endpoint that Claude, Cursor, and Codex all speak.

Connection
Provider REST API
Authentication
Atlassian API token
Actions exposed
12
Cost per call (typical)
1 credit
Adapter
Maintained by Toolspoke

Connected in three steps

  1. 1

    Install Jira

    Open the marketplace in your workspace, add Jira to the project your agents work in, and it appears on the gateway immediately.

  2. 2

    Connect the credential

    Authenticate with atlassian api token. Where to get one, and what it has to be able to reach, is the next section.

  3. 3

    Point your agent at the gateway

    Give your client one address, https://toolspoke.com/mcp. Claude Code takes it as a command, Claude and Claude Desktop add it as a custom connector, and Cursor, Codex and VS Code each read it from a config file of their own.

.mcp.json
{
  "mcpServers": {
    "toolspoke": {
      "type": "http",
      "url": "https://toolspoke.com/mcp"
    }
  }
}

One block covers every tool you have installed. Jira shows up in the client as soon as your policy allows it, and so does everything else you install later.

Where the address goes, per client

Claude Code

Run it in your project, then /mcp to sign in

claude mcp add --transport http toolspoke https://toolspoke.com/mcp
Claude and Claude Desktop

Settings, then Connectors, then Add custom connector

https://toolspoke.com/mcp
Cursor

~/.cursor/mcp.json, or .cursor/mcp.json for one project

{ "mcpServers": { "toolspoke": { "url": "https://toolspoke.com/mcp" } } }
Codex

~/.codex/config.toml

[mcp_servers.toolspoke]
url = "https://toolspoke.com/mcp"
VS Code

.vscode/mcp.json, or the MCP: Add Server command

{ "servers": { "toolspoke": { "type": "http", "url": "https://toolspoke.com/mcp" } } }

What Jira asks for

Atlassian API token. You provide it once, when you install the connector. Toolspoke encrypts it at rest and decrypts it only for the length of a single call, and the gateway attaches it to the outbound request itself, so it is never part of the arguments an agent sends.

Atlassian site nameRequired
Just the subdomain. For https://acme.atlassian.net this is acme.
acme
Email and API tokenRequired
Your Atlassian account email, a colon, then an API token from id.atlassian.com → Security → API tokens. Sent as HTTP Basic. The token inherits your own Jira permissions, so create it on an account that can see the projects this connection should reach.
[email protected]:ATATT3xFfGF0…

What Claude can do in Jira

12 actions, each one declared and named by the connector rather than discovered at runtime. A workspace policy grants a person all of them, a hand-picked selection, everything on the read side, everything on the write side, or none.

Reads
7Reads
Writes
4Writes
Destructive
1Destructive

Reads

7

Fetches data and changes nothing.

  • search_issues

    Search issues with a JQL query and return a compact summary of each match - key, summary, status, assignee, priority, type, project and dates. This is the entry point for almost every Jira question: get an issue key here, then call get_issue for the full description and get_transitions before moving it. JQL examples: "project = ENG AND status != Done ORDER BY updated DESC", "assignee = currentUser() AND resolution IS EMPTY", "labels = billing AND created >= -14d". The query must be bounded (name a project, an assignee, or a date range) or Jira rejects it. Pagination is by next_page_token, not an offset.

  • get_issue

    Fetch one issue in full, including its description, status, assignee, labels, links and comments. Use it after search_issues when you need the actual body rather than a one-line summary. The description and comment bodies come back as Atlassian Document Format - a JSON tree of paragraphs, not markdown. Call get_transitions if you then want to move the issue.

  • get_transitions

    List the workflow transitions available on one issue right now, with the transition id and the status each one leads to. Always call this before transition_issue: transition ids are per-workflow and per-issue-state, so the id that closed one issue will not close another. Costs nothing and changes nothing.

  • list_projects

    List the projects this token can see, with their keys, names, types and leads. Call this first when you need a project_key for create_issue or a JQL query and do not already have one. Filter with query to match a name or key substring.

  • list_issue_types

    List the issue types you may actually create in one project - Task, Bug, Story, Sub-task, and whatever else that project's scheme defines. Call this before create_issue: issue type names are per-project, and a name that works in one project is rejected in another. Takes the project key from list_projects.

  • list_users

    Find users by name or email and return their Atlassian accountId. A search string is required - Jira has no unfiltered listing here. This is the only way to get the accountId that create_issue and update_issue need for an assignee; Jira rejects usernames and email addresses in those fields. Email addresses may be hidden depending on each user's privacy settings.

  • get_current_user

    Return the account this connection authenticates as: display name, email, accountId, time zone and locale. Use it to confirm which Jira account an agent is acting as, and to get the accountId for JQL such as assignee = currentUser(). Takes no arguments and changes nothing, which is why it is the install-time health check.

Writes

4

Creates or updates something on the other side.

  • create_issue

    File a new issue. Needs a project key, a summary and an issue type name - call list_projects for the key and list_issue_types for the type names that project actually offers, because a type valid in one project is often invalid in another. The description is plain text; it is wrapped into Atlassian Document Format for you, so do not pass ADF JSON. Returns the new issue's id, key and self URL.

  • update_issue

    Change fields on an existing issue: retitle it, rewrite the description, reassign it, reprioritise it, relabel it or set a due date. Pass only the fields you want changed; anything you omit is left alone. This cannot move an issue between workflow statuses - that is transition_issue. Jira answers with an empty body on success.

  • add_comment

    Post a comment on an issue. Prefer this over update_issue when you are reporting progress or asking a question - rewriting the description destroys what was there, a comment does not. The body is plain text and is wrapped into Atlassian Document Format for you. Comments are visible to everyone who can see the issue.

  • add_worklog

    Log time against an issue. time_spent uses Jira's own duration syntax - "3h", "1d 2h", "45m". Omit started and Jira stamps it now; supply it to backdate an entry. Adding a worklog adjusts the issue's remaining estimate automatically. Returns the created worklog entry.

Destructive

1

Deletes or permanently alters something. Worth granting on purpose.

  • transition_issue

    Move an issue to another workflow status - resolve it, close it, send it back to the backlog. Call get_transitions first for the transition_id, because ids differ per project workflow and per current status. Classified destructive rather than write: a workflow may offer no route back from the status you land in, transitions fire notifications and automation rules, and some post-functions are not reversible. An optional comment is posted with the transition.

What it will not do

Enforced by the gateway rather than left to convention, which is why each of these can be stated flatly.

It cannot call anything else
The 12 actions above are the whole of it. A call to any other name is refused before it reaches Jira rather than forwarded on, and connecting your account does not add to the list: it is fixed by the connector, not discovered at run time.
It reaches no further than your credential
Toolspoke holds no access to Jira of its own. Every call carries the credential you stored and nothing besides, so whatever that credential cannot reach, this connector cannot reach either.
It never hears from Jira
Nothing is pushed to it. There is no webhook, no subscription and no polling, so this connector cannot notice by itself that something changed in Jira. An agent has to ask.
It does not smooth over provider limits
Toolspoke does not retry, queue or back off around Jira's own rate limits. A call that Jira refuses comes back to the agent as a failed call.

Before you connect it

What can Claude do in Jira?

12 named actions: 7 that only read, 4 that write and 1 that delete or permanently alter something. They include search_issues, get_issue and create_issue. Nothing outside that list is reachable: the connector declares each operation by name rather than proxying whatever an agent asks for.

What credentials does the Jira connector need?

Atlassian API token. The connector asks for atlassian site name and email and api token. Values are encrypted at rest and attached to the outbound request by the gateway, so they are never part of the arguments an agent sends and never reach the audit log.

Does the Jira connector work with Cursor and Codex, or only Claude?

Any client that speaks MCP, and every one of them gets the same 12 actions. There is a single address, https://toolspoke.com/mcp. Claude Code adds it with claude mcp add --transport http, Claude and Claude Desktop take it as a custom connector in settings, Cursor reads it from .cursor/mcp.json, Codex from ~/.codex/config.toml, and VS Code from .vscode/mcp.json. Each of them signs in to the gateway itself, so there is no key to paste.

What does the Jira connector not do?

The 12 actions above are the whole of it. A call to any other name is refused before it reaches Jira rather than forwarded on, and connecting your account does not add to the list: it is fixed by the connector, not discovered at run time. Toolspoke holds no access to Jira of its own. Every call carries the credential you stored and nothing besides, so whatever that credential cannot reach, this connector cannot reach either. Nothing is pushed to it. There is no webhook, no subscription and no polling, so this connector cannot notice by itself that something changed in Jira. An agent has to ask. Toolspoke does not retry, queue or back off around Jira's own rate limits. A call that Jira refuses comes back to the agent as a failed call.

Can I limit which actions an agent can call?

Yes, in two places. The project switches Jira's actions on and off one at a time, for everyone in the project at once, and the screen groups them by read, write and destructive so turning off everything that deletes is one click. An individual agent key can then be narrowed further, to particular toolkits in a project and to particular actions in a toolkit. Whatever it was granted, a key never reaches a project its owner cannot.

What gets recorded when an agent calls Jira?

Every attempt, with the agent that made it and the person that agent belongs to, the full request payload, the response payload, the status, the duration, and the credits spent. Values whose key names a secret are masked out before the record is shown to anyone. An operation the connector marks as not retained never has its response body written at all, so the gateway keeps no second copy of what was read.