@webdesignhot/design-md-mcp 0.1.0 → 0.1.1

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/README.md CHANGED
@@ -9,7 +9,7 @@ When an AI coding agent picks up a project, it usually has no idea what your vis
9
9
  ## Tools
10
10
 
11
11
  - **`list_designs`** — list every design (with `featured_only` / `category` / `tag` filters)
12
- - **`get_design`** — full DESIGN.md/v1.5 source for a slug
12
+ - **`get_design`** — full DESIGN.md (webdesignhot/0.1) source for a slug
13
13
  - **`search_designs`** — fuzzy search by name, tagline, tags, categories
14
14
  - **`diff_designs`** — token-level diff between any two designs
15
15
  - **`export_design`** — render tokens to tailwind / css / dtcg / figma
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webdesignhot/design-md-mcp",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "MCP server exposing the webdesignhot.com DESIGN.md catalog (254+ real-brand design systems) to Claude Desktop, Claude Code, Cursor, Cline, and any other MCP-aware AI agent. Tools: list, get, search, diff, export.",
5
5
  "keywords": ["mcp", "model-context-protocol", "design.md", "design-system", "ai-agents", "claude", "cursor"],
6
6
  "author": "webdesignhot",
package/src/server.mjs CHANGED
@@ -52,7 +52,7 @@ const TOOLS = [
52
52
  {
53
53
  name: 'get_design',
54
54
  description:
55
- 'Fetch the full DESIGN.md/v1.5 source for a specific design (YAML frontmatter + markdown body). The response is the exact file an agent should read as its style source of truth. Use the agent-prompt header from the file to anchor every component decision.',
55
+ 'Fetch the full DESIGN.md (webdesignhot/0.1) source for a specific design (YAML frontmatter + markdown body). The response is the exact file an agent should read as its style source of truth. Use the agent-prompt header from the file to anchor every component decision.',
56
56
  inputSchema: {
57
57
  type: 'object',
58
58
  required: ['slug'],