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
| Parameter | Type | Required | Description |
|---|---|---|---|
expand | string[] | No | Additional fields to include: description, lead, issueTypes |
recent | number | No | Only 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 IDkey- Project key (e.g., "PROJ")name- Project nameself- API URL to the project- Additional fields based on
expandparameter