midnight-mcp 0.1.17 → 0.1.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/tools/meta.js +9 -0
- package/dist/tools/repository/handlers.d.ts +1 -0
- package/dist/tools/repository/handlers.js +2 -0
- package/dist/tools/repository/index.d.ts +2 -2
- package/dist/tools/repository/index.js +2 -2
- package/dist/tools/repository/schemas.d.ts +39 -0
- package/dist/tools/repository/schemas.js +35 -0
- package/dist/tools/repository/tools.js +190 -1
- package/dist/tools/repository/validation.d.ts +628 -0
- package/dist/tools/repository/validation.js +1208 -0
- package/dist/types/mcp.d.ts +1 -1
- package/package.json +1 -1
package/dist/types/mcp.d.ts
CHANGED
|
@@ -51,7 +51,7 @@ export interface ToolAnnotations {
|
|
|
51
51
|
* Tool categories for progressive disclosure
|
|
52
52
|
* Clients can initially show categories, then expand to individual tools
|
|
53
53
|
*/
|
|
54
|
-
export type ToolCategory = "search" | "analyze" | "repository" | "versioning" | "generation" | "health" | "compound";
|
|
54
|
+
export type ToolCategory = "search" | "analyze" | "repository" | "versioning" | "generation" | "health" | "compound" | "validation";
|
|
55
55
|
/**
|
|
56
56
|
* JSON Schema for structured tool outputs
|
|
57
57
|
* Enables better LLM parsing and IDE integration
|