Coming soon
Jira MCP server with OAuth
A hosted Jira tool surface for agents: search by JQL, read an issue, comment and transition, without an API token pasted into a config file.
This upstream is in the catalog and is not connectable yet. The snippet below is the shape it will have. GitHub is connectable today, and the credential you mint now is the same one this upstream will answer to.
What agents do with it
- Turn a support thread into a Jira issue from the agent already reading the thread
- Answer "what is in progress for this project" from JQL rather than a stale export
- Post a build result as a comment on the issue that triggered it
The call it will answer
curl -s -X POST https://api.selat.weekndlabs.com/v1/tools/jira__search_issues/call \
-H "Authorization: Bearer slt_live_..." \
-H 'content-type: application/json' \
-d '{"jql":"project = PROJ AND status = \"In Progress\"","limit":20}'The same tool is on POST /mcp under the name jira__search_issues. One credential serves both surfaces.