1lev1-mcp 1.0.0 → 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/package.json +11 -4
- package/src/app-config.js +4 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "1lev1-mcp",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "Connect 1lev1 to your AI coding agents",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -13,7 +13,12 @@
|
|
|
13
13
|
"publishConfig": {
|
|
14
14
|
"access": "public"
|
|
15
15
|
},
|
|
16
|
-
"keywords": [
|
|
16
|
+
"keywords": [
|
|
17
|
+
"mcp",
|
|
18
|
+
"ai",
|
|
19
|
+
"claude",
|
|
20
|
+
"cursor"
|
|
21
|
+
],
|
|
17
22
|
"license": "MIT",
|
|
18
23
|
"dependencies": {
|
|
19
24
|
"commander": "^12.0.0",
|
|
@@ -21,5 +26,7 @@
|
|
|
21
26
|
"chalk": "^5.0.0",
|
|
22
27
|
"ora": "^8.0.0"
|
|
23
28
|
},
|
|
24
|
-
"engines": {
|
|
25
|
-
|
|
29
|
+
"engines": {
|
|
30
|
+
"node": ">=18"
|
|
31
|
+
}
|
|
32
|
+
}
|
package/src/app-config.js
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
export const APP_CONFIG = {
|
|
2
2
|
// שם השירות כפי שיופיע בקונפיג של הסוכנים (Claude, Cursor וכו')
|
|
3
3
|
serviceName: '1lev1-mcp',
|
|
4
|
-
|
|
4
|
+
|
|
5
5
|
// כתובת ה-URL של ה-MCP server
|
|
6
|
-
mcpUrl: 'https://1lev1.com/api/mcp',
|
|
7
|
-
|
|
6
|
+
mcpUrl: 'https://api.1lev1.com/api/mcp',
|
|
7
|
+
|
|
8
8
|
// כתובת דף החיבור באתר (עבור OAuth/Auth flow)
|
|
9
9
|
authUrlBase: 'https://1lev1.com/mcp-connect',
|
|
10
|
-
|
|
10
|
+
|
|
11
11
|
// פורט ברירת מחדל לשרת ה-callback המקומי
|
|
12
12
|
defaultPort: 4242
|
|
13
13
|
};
|