You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: Support multiple keys for global config lookup
- Adds prioritized lookup for short, atlassian-jira, full, and unscoped package names in ~/.mcp/configs.json.
- Updates README documentation to reflect supported keys and recommend short keys.
Copy file name to clipboardExpand all lines: README.md
+4-2Lines changed: 4 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -54,7 +54,7 @@ Create or edit `~/.mcp/configs.json`:
54
54
55
55
```json
56
56
{
57
-
"@aashari/mcp-server-atlassian-jira": {
57
+
"jira": {
58
58
"environments": {
59
59
"ATLASSIAN_SITE_NAME": "<YOUR_SITE_NAME>",
60
60
"ATLASSIAN_USER_EMAIL": "<YOUR_ATLASSIAN_EMAIL>",
@@ -68,6 +68,8 @@ Create or edit `~/.mcp/configs.json`:
68
68
-`<YOUR_ATLASSIAN_EMAIL>`: Your Atlassian account email.
69
69
-`<YOUR_COPIED_API_TOKEN>`: The API token from Step 1.
70
70
71
+
**Note:** For backward compatibility, the server will also recognize configurations under the full package name (`@aashari/mcp-server-atlassian-jira`), the unscoped package name (`mcp-server-atlassian-jira`), or the `atlassian-jira` format if the recommended `jira` key is not found. However, using the short `jira` key is preferred for new configurations.
72
+
71
73
### Method B: Environment Variables
72
74
73
75
Pass credentials directly when running the server:
@@ -90,7 +92,7 @@ Configure your MCP-compatible client to launch this server.
0 commit comments