jira_list_projects
Pack: jira · Endpoint: https://gateway.pipeworx.io/jira/mcp
No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/jira_list_projects for the schema, then POST the same URL with its arguments for the data.
List all accessible Jira projects. Returns project keys, names, descriptions, and types. Use before searching to discover available projects.
Example call
Arguments
{}
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_list_projects","arguments":{}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('jira_list_projects', {});
Response shape
Always returns: items, count
| Field | Type | Description |
|---|---|---|
items | array | List of all accessible Jira projects |
count | integer | Number of items returned. |
Full JSON Schema
{
"type": "object",
"properties": {
"items": {
"type": "array",
"description": "List of all accessible Jira projects",
"items": {
"type": "object",
"properties": {
"expand": {
"type": "string",
"description": "Expansion hints"
},
"self": {
"type": "string",
"description": "API URL for project"
},
"id": {
"type": "string",
"description": "Project ID"
},
"key": {
"type": "string",
"description": "Project key"
},
"name": {
"type": "string",
"description": "Project name"
},
"projectTypeKey": {
"type": "string",
"description": "Type of project (e.g., software, business)"
},
"simplified": {
"type": "boolean",
"description": "Whether project is simplified"
},
"avatarUrls": {
"type": "object",
"description": "Avatar URLs at various sizes",
"additionalProperties": {
"type": "string"
}
},
"projectCategory": {
"type": "object",
"description": "Project category details",
"additionalProperties": true
},
"isPrivate": {
"type": "boolean",
"description": "Whether project is private"
},
"leadUserName": {
"type": "string",
"description": "Lead user name"
},
"description": {
"type": "string",
"description": "Project description"
}
}
}
},
"count": {
"type": "integer",
"description": "Number of items returned."
}
},
"required": [
"items",
"count"
]
}
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.