|
1319 | 1319 | },
|
1320 | 1320 | "atlassian": {
|
1321 | 1321 | "image": "mcp/atlassian:latest",
|
1322 |
| - "description": "", |
1323 |
| - "transport": "sse", |
| 1322 | + "description": "Model Context Protocol (MCP) server for Atlassian products (Confluence and Jira). This integration supports both Confluence & Jira Cloud and Server/Data Center deployments.", |
| 1323 | + "transport": "stdio", |
1324 | 1324 | "permissions": {
|
1325 | 1325 | "read": [],
|
1326 | 1326 | "write": [],
|
|
1330 | 1330 | "allow_transport": [
|
1331 | 1331 | "tcp"
|
1332 | 1332 | ],
|
1333 |
| - "allow_host": [], |
| 1333 | + "allow_host": [ |
| 1334 | + "atlassian.net", |
| 1335 | + "atlassian.com" |
| 1336 | + ], |
1334 | 1337 | "allow_port": [
|
1335 | 1338 | 443
|
1336 | 1339 | ]
|
1337 | 1340 | }
|
1338 | 1341 | }
|
1339 | 1342 | },
|
1340 |
| - "tools": [], |
1341 |
| - "env_vars": [], |
| 1343 | + "tools": [ |
| 1344 | + "confluence_search", |
| 1345 | + "confluence_get_page", |
| 1346 | + "confluence_get_page_children", |
| 1347 | + "confluence_get_page_ancestors", |
| 1348 | + "confluence_get_comments", |
| 1349 | + "confluence_create_page", |
| 1350 | + "confluence_update_page", |
| 1351 | + "confluence_delete_page", |
| 1352 | + "confluence_attach_content", |
| 1353 | + "jira_get_issue", |
| 1354 | + "jira_search", |
| 1355 | + "jira_get_project_issues", |
| 1356 | + "jira_get_epic_issues", |
| 1357 | + "jira_create_issue", |
| 1358 | + "jira_update_issue", |
| 1359 | + "jira_delete_issue", |
| 1360 | + "jira_get_transitions", |
| 1361 | + "jira_transition_issue", |
| 1362 | + "jira_add_comment", |
| 1363 | + "jira_add_worklog", |
| 1364 | + "jira_get_worklog", |
| 1365 | + "jira_download_attachments", |
| 1366 | + "jira_link_to_epic", |
| 1367 | + "jira_get_agile_boards", |
| 1368 | + "jira_get_board_issues", |
| 1369 | + "jira_get_sprints_from_board", |
| 1370 | + "jira_get_sprint_issues" |
| 1371 | + ], |
| 1372 | + "env_vars": [ |
| 1373 | + { |
| 1374 | + "name": "CONFLUENCE_URL", |
| 1375 | + "description": "Confluence URL (e.g., https://your-domain.atlassian.net/wiki)", |
| 1376 | + "required": false |
| 1377 | + }, |
| 1378 | + { |
| 1379 | + "name": "CONFLUENCE_USERNAME", |
| 1380 | + "description": "Confluence username/email for Cloud deployments", |
| 1381 | + "required": false |
| 1382 | + }, |
| 1383 | + { |
| 1384 | + "name": "CONFLUENCE_API_TOKEN", |
| 1385 | + "description": "Confluence API token for Cloud deployments", |
| 1386 | + "required": false |
| 1387 | + }, |
| 1388 | + { |
| 1389 | + "name": "CONFLUENCE_PERSONAL_TOKEN", |
| 1390 | + "description": "Confluence Personal Access Token for Server/Data Center deployments", |
| 1391 | + "required": false |
| 1392 | + }, |
| 1393 | + { |
| 1394 | + "name": "CONFLUENCE_SSL_VERIFY", |
| 1395 | + "description": "Verify SSL certificates for Confluence Server/Data Center (true/false)", |
| 1396 | + "required": false |
| 1397 | + }, |
| 1398 | + { |
| 1399 | + "name": "CONFLUENCE_SPACES_FILTER", |
| 1400 | + "description": "Comma-separated list of Confluence space keys to filter search results", |
| 1401 | + "required": false |
| 1402 | + }, |
| 1403 | + { |
| 1404 | + "name": "JIRA_URL", |
| 1405 | + "description": "Jira URL (e.g., https://your-domain.atlassian.net)", |
| 1406 | + "required": false |
| 1407 | + }, |
| 1408 | + { |
| 1409 | + "name": "JIRA_USERNAME", |
| 1410 | + "description": "Jira username/email for Cloud deployments", |
| 1411 | + "required": false |
| 1412 | + }, |
| 1413 | + { |
| 1414 | + "name": "JIRA_API_TOKEN", |
| 1415 | + "description": "Jira API token for Cloud deployments", |
| 1416 | + "required": false |
| 1417 | + }, |
| 1418 | + { |
| 1419 | + "name": "JIRA_PERSONAL_TOKEN", |
| 1420 | + "description": "Jira Personal Access Token for Server/Data Center deployments", |
| 1421 | + "required": false |
| 1422 | + }, |
| 1423 | + { |
| 1424 | + "name": "JIRA_SSL_VERIFY", |
| 1425 | + "description": "Verify SSL certificates for Jira Server/Data Center (true/false)", |
| 1426 | + "required": false |
| 1427 | + }, |
| 1428 | + { |
| 1429 | + "name": "JIRA_PROJECTS_FILTER", |
| 1430 | + "description": "Comma-separated list of Jira project keys to filter search results", |
| 1431 | + "required": false |
| 1432 | + }, |
| 1433 | + { |
| 1434 | + "name": "READ_ONLY_MODE", |
| 1435 | + "description": "Run in read-only mode (disables all write operations)", |
| 1436 | + "required": false |
| 1437 | + }, |
| 1438 | + { |
| 1439 | + "name": "MCP_VERBOSE", |
| 1440 | + "description": "Increase logging verbosity", |
| 1441 | + "required": false |
| 1442 | + } |
| 1443 | + ], |
1342 | 1444 | "args": [],
|
1343 | 1445 | "metadata": {
|
1344 |
| - "stars": 0, |
| 1446 | + "stars": 698, |
1345 | 1447 | "pulls": 89,
|
1346 | 1448 | "last_updated": "2025-03-21T21:32:38.626915Z"
|
1347 | 1449 | },
|
1348 |
| - "repository_url": "https://github.com/modelcontextprotocol/servers", |
| 1450 | + "repository_url": "https://github.com/sooperset/mcp-atlassian", |
1349 | 1451 | "tags": [
|
1350 |
| - "atlassian" |
| 1452 | + "atlassian", |
| 1453 | + "confluence", |
| 1454 | + "jira", |
| 1455 | + "wiki", |
| 1456 | + "issue-tracking", |
| 1457 | + "project-management", |
| 1458 | + "documentation", |
| 1459 | + "cloud", |
| 1460 | + "server", |
| 1461 | + "data-center" |
1351 | 1462 | ]
|
1352 | 1463 | },
|
1353 | 1464 | "hass-mcp": {
|
|
0 commit comments