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
| Name | Type | Required | Description |
|---|---|---|---|
project_key | string | yes | Project 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
| Field | Type | Description |
|---|---|---|
expand | string | Expansion options applied |
self | string | API URL for this project |
id | string | Project ID |
key | string | Project key |
name | string | Project name |
projectTypeKey | string | Project type (software, service_desk, business) |
simplified | boolean | Whether project uses simplified workflow |
style | string | Project style |
favourite | boolean | Whether user has marked as favorite |
isPrivate | boolean | Whether project is private |
lead | object | Project lead user details |
components | array | Project components |
issueTypes | array | Available issue types in project |
url | string | Project URL |
description | string | Project description |
avatarUrls | object | Project avatar URLs |
error | string | Error code if connection failed |
message | string | Error 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.