| 123456789101112131415161718192021 |
- package microsoftdocs
- import (
- "github.com/labring/aiproxy/core/model"
- mcpservers "github.com/labring/aiproxy/mcp-servers"
- )
- const defaultURL = "https://learn.microsoft.com/api/mcp"
- var configTemplates = mcpservers.ProxyConfigTemplates{
- "url": {
- ConfigTemplate: mcpservers.ConfigTemplate{
- Name: "URL",
- Required: mcpservers.ConfigRequiredTypeInitOptional,
- Example: defaultURL,
- Default: defaultURL,
- Description: "The Streamable http URL of the Microsoft Learn Docs MCP server",
- },
- Type: model.ParamTypeURL,
- },
- }
|