jira_get_project

Pack: jira · Endpoint: https://gateway.pipeworx.io/jira/mcp

Get details for a specific Jira project by key (e.g., ‘PROJ’) or ID. Returns name, description, lead, issue types, and custom fields.

Parameters

NameTypeRequiredDescription
project_keystringyesProject key (e.g., “PROJ”) or numeric project ID

Example call

Arguments

{
  "project_key": "PROJ"
}

curl

curl -X POST https://gateway.pipeworx.io/jira/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"jira_get_project","arguments":{"project_key":"PROJ"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('jira_get_project', {
  "project_key": "PROJ"
});

Response shape

FieldTypeDescription
expandstringExpansion options applied
selfstringAPI URL for this project
idstringProject ID
keystringProject key
namestringProject name
projectTypeKeystringProject type (software, service_desk, business)
simplifiedbooleanWhether project uses simplified workflow
stylestringProject style
favouritebooleanWhether user has marked as favorite
isPrivatebooleanWhether project is private
leadobjectProject lead user details
componentsarrayProject components
issueTypesarrayAvailable issue types in project
urlstringProject URL
descriptionstringProject description
avatarUrlsobjectProject avatar URLs
errorstringError code if connection failed
messagestringError message if connection failed
Full JSON Schema
{
  "type": "object",
  "properties": {
    "expand": {
      "type": "string",
      "description": "Expansion options applied"
    },
    "self": {
      "type": "string",
      "description": "API URL for this project"
    },
    "id": {
      "type": "string",
      "description": "Project ID"
    },
    "key": {
      "type": "string",
      "description": "Project key"
    },
    "name": {
      "type": "string",
      "description": "Project name"
    },
    "projectTypeKey": {
      "type": "string",
      "description": "Project type (software, service_desk, business)"
    },
    "simplified": {
      "type": "boolean",
      "description": "Whether project uses simplified workflow"
    },
    "style": {
      "type": "string",
      "description": "Project style"
    },
    "favourite": {
      "type": "boolean",
      "description": "Whether user has marked as favorite"
    },
    "isPrivate": {
      "type": "boolean",
      "description": "Whether project is private"
    },
    "lead": {
      "type": "object",
      "description": "Project lead user details"
    },
    "components": {
      "type": "array",
      "description": "Project components"
    },
    "issueTypes": {
      "type": "array",
      "description": "Available issue types in project"
    },
    "url": {
      "type": "string",
      "description": "Project URL"
    },
    "description": {
      "type": "string",
      "description": "Project description"
    },
    "avatarUrls": {
      "type": "object",
      "description": "Project avatar URLs"
    },
    "error": {
      "type": "string",
      "description": "Error code if connection failed"
    },
    "message": {
      "type": "string",
      "description": "Error message if connection failed"
    }
  }
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "jira": {
      "url": "https://gateway.pipeworx.io/jira/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build May 9, 2026