tailwindcss-docs-mcp 1.0.1 → 1.0.2
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/server.js +2 -2
- package/package.json +1 -1
package/dist/server.js
CHANGED
|
@@ -52,7 +52,7 @@ export async function createServer(deps, transport) {
|
|
|
52
52
|
});
|
|
53
53
|
// Register fetch_docs
|
|
54
54
|
server.tool(TOOL_NAMES.FETCH_DOCS, "Download and index Tailwind CSS documentation for local semantic search. Only needs to be run once per version. Re-run with force=true to refresh.", {
|
|
55
|
-
version: z.enum(["
|
|
55
|
+
version: z.enum(["v4", "v3"]).optional().describe("Tailwind CSS major version (default: v4)"),
|
|
56
56
|
force: z
|
|
57
57
|
.boolean()
|
|
58
58
|
.optional()
|
|
@@ -97,7 +97,7 @@ export async function createServer(deps, transport) {
|
|
|
97
97
|
.string()
|
|
98
98
|
.optional()
|
|
99
99
|
.describe("Filter by category (e.g., 'Layout', 'Spacing', 'Typography', 'Flexbox & Grid'). Omit to list all categories."),
|
|
100
|
-
version: z.enum(["
|
|
100
|
+
version: z.enum(["v4", "v3"]).optional().describe("Tailwind CSS major version (default: v4)"),
|
|
101
101
|
}, (params) => {
|
|
102
102
|
try {
|
|
103
103
|
const result = handleListUtilities(params, db, config.defaultVersion);
|