Spaces:
Configuration error
Configuration error
File size: 1,184 Bytes
ac6f50a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | {
"mcpServers": {
"deafauth": {
"command": "node",
"args": ["services/deafauth/dist/mcp-server.js"],
"description": "DeafAUTH - Accessible authentication service",
"env": {
"DEAFAUTH_DATABASE_URL": "postgresql://user:password@localhost:5432/deafauth"
}
},
"pinksync": {
"command": "node",
"args": ["services/pinksync/dist/mcp-server.js"],
"description": "PinkSync - Real-time synchronization service",
"env": {
"REDIS_URL": "redis://localhost:6379"
}
},
"fibonrose": {
"command": "node",
"args": ["services/fibonrose/dist/mcp-server.js"],
"description": "FibonRose - Mathematical optimization engine"
},
"accessibility-nodes": {
"command": "node",
"args": ["services/accessibility-nodes/dist/mcp-server.js"],
"description": "Accessibility Nodes - Modular accessibility features"
},
"ai": {
"command": "node",
"args": ["ai/dist/mcp-server.js"],
"description": "AI Services - AI-powered workflows",
"env": {
"OPENAI_API_KEY": "your-api-key-here"
}
}
}
}
|