MCP Libraries
mcp-jira-stdioTools Reference

jira_get_visible_projects

Retrieve all projects visible to the authenticated user

jira_get_visible_projects

Retrieves all projects visible to the authenticated user.

Parameters

ParameterTypeRequiredDescription
expandstring[]NoAdditional fields to include: description, lead, issueTypes
recentnumberNoOnly return recently accessed projects (limit)

Example

{
  "tool": "jira_get_visible_projects",
  "arguments": {}
}

With Options

{
  "tool": "jira_get_visible_projects",
  "arguments": {
    "expand": ["description", "lead", "issueTypes"],
    "recent": 10
  }
}

Response

Returns an array of project objects with:

  • id - Project ID
  • key - Project key (e.g., "PROJ")
  • name - Project name
  • self - API URL to the project
  • Additional fields based on expand parameter

On this page