Open Context Protocol is live! 🚀 Read the launch post

Jira

Issue tracking and project management workflows

Overview

Quick Start

from ocp_agent import OCPAgent

agent = OCPAgent()

# Register with authentication
await agent.register_api(
    'jira',
    headers={'Authorization': 'Bearer your_token_here'}
)

# List available tools
tools = agent.list_tools('jira')
print(f"Available: {len(tools)} tools")

Authentication

Type: Bearer Token

Use ‘Bearer’ with an Atlassian API token. Create tokens at https://id.atlassian.com/manage-profile/security/api-tokens

See the Authentication Guide for general setup instructions.

Available Tools

This API provides 330 tools across various resource types.

attachment

comment

component

dashboard

field

filter

group

issue

issuelink

issuelinktype

issuetype

jql

project

search

user

version

workflow

workflowscheme

worklog

Usage Example

from ocp_agent import OCPAgent

# Initialize agent
agent = OCPAgent()

# Register the Jira
api = await agent.register_api('jira')

# List available tools
tools = agent.list_tools('jira')
print(f"Available tools: {len(tools)}")

# Use a tool (example)
# result = await agent.call_tool('tool_name', parameters)

Links