feat(mcp): add ReUI server configuration to mcp.json
Build and Push Auth Portal Docker Image / build-and-push (push) Successful in 50s
Build and Push Auth Portal Docker Image / create-release (push) Skipped

- Introduced ReUI server details with the API URL for mcp integration.
- Updated mcpServers structure to include the new server entry.
This commit is contained in:
Denozordec
2026-07-21 00:25:14 +07:00
parent 779186f1e4
commit ece2b1e7b9
3 changed files with 24 additions and 2 deletions
+6 -2
View File
@@ -1,3 +1,7 @@
{
"mcpServers": {}
{
"mcpServers": {
"reui": {
"url": "https://mcp.reui.io/api/mcp"
}
}
}
+8
View File
@@ -0,0 +1,8 @@
{
"mcpServers": {
"reui": {
"type": "http",
"url": "https://mcp.reui.io/api/mcp"
}
}
}
+10
View File
@@ -0,0 +1,10 @@
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"reui": {
"type": "remote",
"url": "https://mcp.reui.io/api/mcp",
"enabled": true
}
}
}