From ece2b1e7b97e024ec1fd706ab35d657cee075eda Mon Sep 17 00:00:00 2001 From: Denozordec Date: Tue, 21 Jul 2026 00:25:14 +0700 Subject: [PATCH] feat(mcp): add ReUI server configuration to mcp.json - Introduced ReUI server details with the API URL for mcp integration. - Updated mcpServers structure to include the new server entry. --- .cursor/mcp.json | 8 ++++++-- .mcp.json | 8 ++++++++ opencode.json | 10 ++++++++++ 3 files changed, 24 insertions(+), 2 deletions(-) create mode 100644 .mcp.json create mode 100644 opencode.json diff --git a/.cursor/mcp.json b/.cursor/mcp.json index ba6141f..b1ac85e 100644 --- a/.cursor/mcp.json +++ b/.cursor/mcp.json @@ -1,3 +1,7 @@ -{ - "mcpServers": {} +{ + "mcpServers": { + "reui": { + "url": "https://mcp.reui.io/api/mcp" + } + } } diff --git a/.mcp.json b/.mcp.json new file mode 100644 index 0000000..65d3383 --- /dev/null +++ b/.mcp.json @@ -0,0 +1,8 @@ +{ + "mcpServers": { + "reui": { + "type": "http", + "url": "https://mcp.reui.io/api/mcp" + } + } +} diff --git a/opencode.json b/opencode.json new file mode 100644 index 0000000..5dc0a7f --- /dev/null +++ b/opencode.json @@ -0,0 +1,10 @@ +{ + "$schema": "https://opencode.ai/config.json", + "mcp": { + "reui": { + "type": "remote", + "url": "https://mcp.reui.io/api/mcp", + "enabled": true + } + } +}