mirror of
https://github.com/samanhappy/mcphub.git
synced 2025-12-24 02:39:19 -05:00
23 lines
520 B
JSON
23 lines
520 B
JSON
{
|
|
"mcpServers": {
|
|
"atlassian": {
|
|
"command": "uvx",
|
|
"args": [
|
|
"mcp-atlassian",
|
|
"--jira-url=${JIRA_URL}",
|
|
"--jira-username=${JIRA_USERNAME}",
|
|
"--jira-token=${JIRA_TOKEN}"
|
|
],
|
|
"env": {}
|
|
}
|
|
},
|
|
"users": [
|
|
{
|
|
"username": "admin",
|
|
"_comment": "Password must be a bcrypt hash. Generate with: node -e \"console.log(require('bcrypt').hashSync('your-password', 10))\"",
|
|
"password": "${ADMIN_PASSWORD_HASH}",
|
|
"isAdmin": true
|
|
}
|
|
]
|
|
}
|