Skip to content

Commit 3592b2c

Browse files
authored
Add the rest of the tag descriptions (#661)
<!-- Provide a brief summary of your changes --> ## Motivation and Context <!-- Why is this change needed? What problem does it solve? --> ## How Has This Been Tested? <!-- Have you tested this in a real application? Which scenarios were tested? --> ## Breaking Changes <!-- Will users need to update their code or configurations? --> ## Types of changes <!-- What types of changes does your code introduce? Put an `x` in all the boxes that apply: --> - [ ] Bug fix (non-breaking change which fixes an issue) - [ ] New feature (non-breaking change which adds functionality) - [ ] Breaking change (fix or feature that would cause existing functionality to change) - [ ] Documentation update ## Checklist <!-- Go over all the following points, and put an `x` in all the boxes that apply. --> - [ ] I have read the [MCP Documentation](https://modelcontextprotocol.io) - [ ] My code follows the repository's style guidelines - [ ] New and existing tests pass locally - [ ] I have added appropriate error handling - [ ] I have added or updated documentation as needed ## Additional context <!-- Add any other context, implementation notes, or design decisions --> Signed-off-by: Radoslav Dimitrov <radoslav@stacklok.com>
1 parent 6d110bf commit 3592b2c

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

internal/api/router/router.go

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,22 @@ func NewHumaAPI(cfg *config.Config, registry service.RegistryService, mux *http.
149149
Name: "publish",
150150
Description: "Operations for publishing MCP servers to the registry",
151151
},
152+
{
153+
Name: "auth",
154+
Description: "Authentication operations for obtaining tokens to publish servers",
155+
},
156+
{
157+
Name: "admin",
158+
Description: "Administrative operations for managing servers (requires elevated permissions)",
159+
},
160+
{
161+
Name: "health",
162+
Description: "Health check endpoint for monitoring service availability",
163+
},
164+
{
165+
Name: "ping",
166+
Description: "Simple ping endpoint for testing connectivity",
167+
},
152168
}
153169

154170
// Add metrics middleware with options

0 commit comments

Comments
 (0)