@oneentry/mcp-server 1.1.3 → 1.1.5

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.
Files changed (2) hide show
  1. package/README.md +13 -7
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -26,7 +26,7 @@ Add to `~/.claude/claude_desktop_config.json` or `.mcp.json` in your project:
26
26
  "mcpServers": {
27
27
  "oneentry": {
28
28
  "command": "npx",
29
- "args": ["-y", "@oneentry/mcp-server"]
29
+ "args": ["-y", "@oneentry/mcp-server@latest"]
30
30
  }
31
31
  }
32
32
  }
@@ -69,15 +69,18 @@ Read them in Claude Code by typing `@oneentry://rules/<name>`:
69
69
  | URI | Description |
70
70
  |-----|-------------|
71
71
  | `oneentry://claude-md` | Full CLAUDE.md — main SDK instructions |
72
- | `oneentry://rules/forms` | Forms & FormsData rules |
73
- | `oneentry://rules/tokens` | Tokens & makeUserApi rules |
72
+ | `oneentry://rules/linting` | Linting rules |
73
+ | `oneentry://rules/typescript` | TypeScript rules |
74
+ | `oneentry://rules/nextjs-pages` | Next.js pages, params as Promise |
74
75
  | `oneentry://rules/attribute-values` | attributeValues access by type |
76
+ | `oneentry://rules/attribute-sets` | AttributeSets — schema vs values |
75
77
  | `oneentry://rules/auth-provider` | AuthProvider — auth/signUp rules |
76
- | `oneentry://rules/nextjs-pages` | Next.js pages, params as Promise |
78
+ | `oneentry://rules/tokens` | Tokens & makeUserApi rules |
77
79
  | `oneentry://rules/server-actions` | Server Actions rules |
80
+ | `oneentry://rules/forms` | Forms & FormsData rules |
78
81
  | `oneentry://rules/orders` | Orders & Payments rules |
79
- | `oneentry://rules/attribute-sets` | AttributeSets — schema vs values |
80
82
  | `oneentry://rules/localization` | Localization, locale from params |
83
+ | `oneentry://rules/product-statuses` | Product statuses rules |
81
84
 
82
85
  ## Available prompts (skills)
83
86
 
@@ -86,12 +89,14 @@ Invoke in Claude Code with `/skill-name`:
86
89
  | Prompt | Description |
87
90
  |--------|-------------|
88
91
  | `oneentry-context` | Load full SDK context at session start |
92
+ | `setup-nextjs` | Initialize Next.js project |
89
93
  | `setup-oneentry` | Initialize SDK in a Next.js project |
90
- | `create-page` | Create Next.js page with CMS content |
91
94
  | `inspect-api` | Inspect real API markers and structure |
95
+ | `create-page` | Create Next.js page with CMS content |
92
96
  | `create-auth` | Auth/registration form |
93
97
  | `create-product-list` | Product catalog with filters and pagination |
94
- | `create-product-card` | Single product page |
98
+ | `create-product-card` | Single product card |
99
+ | `create-product-page` | Single product page with gallery and related products |
95
100
  | `create-cart-manager` | Cart — Redux + persist |
96
101
  | `create-favorites` | Favorites — Redux + persist |
97
102
  | `create-filter-panel` | Filter panel with FilterContext |
@@ -105,5 +110,6 @@ Invoke in Claude Code with `/skill-name`:
105
110
  | `create-locale-switcher` | Locale switcher |
106
111
  | `create-server-action` | Next.js Server Action |
107
112
  | `create-subscription-events` | Price/availability subscription |
113
+ | `setup-playwright` | Setup Playwright testing framework |
108
114
 
109
115
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oneentry/mcp-server",
3
- "version": "1.1.3",
3
+ "version": "1.1.5",
4
4
  "description": "MCP server for OneEntry SDK — rules and skills for Claude Code",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",