jira_list_projects

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

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

Full JSON Schema
{
  "oneOf": [
    {
      "type": "array",
      "description": "List of accessible Jira projects",
      "items": {
        "type": "object",
        "properties": {
          "expand": {
            "type": "string",
            "description": "Expansion options"
          },
          "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"
          },
          "avatarUrls": {
            "type": "object",
            "description": "Project avatar URLs"
          },
          "projectCategory": {
            "type": "object",
            "description": "Project category details"
          }
        }
      }
    },
    {
      "type": "object",
      "properties": {
        "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