← Atlassian Goals & Projects MCP Server
22cc7233e04eb23590f84c133652adae075e8e6esource_git · jaimesm-mews/atlassian-goals-projects-mcp · current release
Observed 2026-08-25T14:37:34.991Z using mcpSecurity-inventory. Status: succeeded. Negotiated protocol: 2025-06-18.
{
"tools": {
"listChanged": true
}
}| Tool | Category | Annotations | Risk |
|---|---|---|---|
get_goalFetch an Atlassian Goal by its key. Returns the goal's id, key, name, owner, and archived status.Input schema{
"type": "object",
"properties": {
"goalKey": {
"type": "string",
"description": "Atlassian Goal key, e.g. MEWS-3761"
}
},
"required": [
"goalKey"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
} | — | — · — | — |
get_goal_latest_updateFetch the latest status update (summary + detailed notes) for an Atlassian Goal.Input schema{
"type": "object",
"properties": {
"goalKey": {
"type": "string",
"description": "Atlassian Goal key, e.g. MEWS-3762"
}
},
"required": [
"goalKey"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
} | — | — · — | — |
get_project_updatesFetch detailed updates, highlights (decisions/learnings/risks), linked Jira items, and update notes for one or more Atlassian Projects within a date range.Input schema{
"type": "object",
"properties": {
"projectKeys": {
"type": "array",
"items": {
"type": "string"
},
"minItems": 1,
"description": "Array of Atlassian Project keys, e.g. [\"MEWS-3866\", \"MEWS-4181\"]"
},
"dateFrom": {
"type": "string",
"description": "Start date (YYYY-MM-DD) for the update range"
},
"dateTo": {
"type": "string",
"description": "End date (YYYY-MM-DD) for the update range"
}
},
"required": [
"projectKeys",
"dateFrom",
"dateTo"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
} | — | — · — | — |
search_projectsSearch Atlassian Projects (Townsquare). Returns project key, name, state, and pagination info. Use searchString for TQL filtering.Input schema{
"type": "object",
"properties": {
"searchString": {
"type": "string",
"default": "",
"description": "TQL search string for projects (e.g. 'key IN (\"MEWS-3866\", \"MEWS-4181\")' or empty for all)"
},
"first": {
"type": "number",
"default": 50,
"description": "Max projects to return per page (default 50, max 50)"
},
"after": {
"type": "string",
"description": "Pagination cursor from a previous response"
}
},
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
} | — | — · — | — |