feat(mcp): add MCP extension support with routes and configuration

This commit is contained in:
Ramkumar Chinchani
2025-05-22 23:24:55 +00:00
parent 8a99a3ed23
commit 56afa6bd42
7 changed files with 653 additions and 0 deletions
+5
View File
@@ -33,4 +33,9 @@ const (
UserPrefs = "/userprefs"
ExtUserPrefs = ExtPrefix + UserPrefs
FullUserPrefs = RoutePrefix + ExtUserPrefs
// mcp extension.
MCP = "/mcp"
ExtMCP = ExtPrefix + MCP
FullMCP = RoutePrefix + ExtMCP
)