@oneentry/mcp-server 1.0.0 → 1.0.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.
Files changed (2) hide show
  1. package/README.md +0 -46
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -94,50 +94,4 @@ Invoke in Claude Code with `/skill-name`:
94
94
  | `create-server-action` | Next.js Server Action |
95
95
  | `create-subscription-events` | Price/availability subscription |
96
96
 
97
- ---
98
-
99
- ## For OneEntry team — updating content
100
-
101
- Rules and skills are fetched from the GitHub repo configured in `ONEENTRY_MCP_BASE_URL`.
102
-
103
- **Default URL:**
104
- ```
105
- https://raw.githubusercontent.com/ONEENTRY-PLATFORM/oneentry-sdk-rules/main
106
- ```
107
-
108
- Update rules in the repo — all users get the changes automatically within 5 minutes (cache TTL).
109
-
110
- **To point to a custom repo:**
111
- ```json
112
- {
113
- "mcpServers": {
114
- "oneentry": {
115
- "command": "npx",
116
- "args": ["-y", "@oneentry/mcp-server"],
117
- "env": {
118
- "ONEENTRY_MCP_BASE_URL": "https://raw.githubusercontent.com/your-org/your-repo/main"
119
- }
120
- }
121
- }
122
- }
123
- ```
124
-
125
- ---
126
-
127
- ## Local development
128
-
129
- ```bash
130
- cd mcp-server
131
- npm install
132
- npm run dev
133
- ```
134
97
 
135
- To point at local files during development:
136
- ```bash
137
- ONEENTRY_MCP_BASE_URL=file:///Users/you/claude-next npm run dev
138
- ```
139
-
140
- Build for production:
141
- ```bash
142
- npm run build
143
- ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oneentry/mcp-server",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "MCP server for OneEntry SDK — rules and skills for Claude Code",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -27,4 +27,4 @@
27
27
  "publishConfig": {
28
28
  "access": "public"
29
29
  }
30
- }
30
+ }