mirror of
https://github.com/samanhappy/mcphub.git
synced 2025-12-24 02:39:19 -05:00
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: samanhappy <2755122+samanhappy@users.noreply.github.com> Co-authored-by: samanhappy <samanhappy@gmail.com>
77 lines
1.5 KiB
JSON
77 lines
1.5 KiB
JSON
{
|
|
"mcpServers": {
|
|
"playwright": {
|
|
"command": "npx",
|
|
"args": [
|
|
"@playwright/mcp@latest",
|
|
"--headless"
|
|
]
|
|
},
|
|
"fetch": {
|
|
"command": "uvx",
|
|
"args": [
|
|
"mcp-server-fetch"
|
|
]
|
|
}
|
|
},
|
|
"users": [
|
|
{
|
|
"username": "admin",
|
|
"password": "$2b$10$Vt7krIvjNgyN67LXqly0uOcTpN0LI55cYRbcKC71pUDAP0nJ7RPa.",
|
|
"isAdmin": true
|
|
}
|
|
],
|
|
"systemConfig": {
|
|
"oauthServer": {
|
|
"enabled": true,
|
|
"accessTokenLifetime": 3600,
|
|
"refreshTokenLifetime": 1209600,
|
|
"authorizationCodeLifetime": 300,
|
|
"requireClientSecret": false,
|
|
"allowedScopes": [
|
|
"read",
|
|
"write"
|
|
]
|
|
},
|
|
"routing": {
|
|
"skipAuth": false
|
|
}
|
|
},
|
|
"oauthClients": [
|
|
{
|
|
"clientId": "chatgpt-web-client",
|
|
"name": "ChatGPT Web Integration",
|
|
"redirectUris": [
|
|
"https://chatgpt.com/oauth/callback",
|
|
"https://chat.openai.com/oauth/callback"
|
|
],
|
|
"grants": [
|
|
"authorization_code",
|
|
"refresh_token"
|
|
],
|
|
"scopes": [
|
|
"read",
|
|
"write"
|
|
],
|
|
"owner": "admin"
|
|
},
|
|
{
|
|
"clientId": "example-public-app",
|
|
"name": "Example Public Application",
|
|
"redirectUris": [
|
|
"http://localhost:8080/callback",
|
|
"http://localhost:3001/callback"
|
|
],
|
|
"grants": [
|
|
"authorization_code",
|
|
"refresh_token"
|
|
],
|
|
"scopes": [
|
|
"read",
|
|
"write"
|
|
],
|
|
"owner": "admin"
|
|
}
|
|
]
|
|
}
|