tryastro-mcp 0.1.2 → 0.1.4
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 +2 -2
- package/package.json +3 -2
- package/server.js +1 -1
package/README.md
CHANGED
|
@@ -45,7 +45,7 @@ Use the published npm package:
|
|
|
45
45
|
"mcpServers": {
|
|
46
46
|
"astro-mcp": {
|
|
47
47
|
"command": "npx",
|
|
48
|
-
"args": ["-y", "-p", "tryastro-mcp", "
|
|
48
|
+
"args": ["-y", "-p", "tryastro-mcp", "tryastro-mcp"],
|
|
49
49
|
"env": {
|
|
50
50
|
"NPM_CONFIG_CACHE": "/tmp/astro-mcp-npm-cache",
|
|
51
51
|
"npm_config_cache": "/tmp/astro-mcp-npm-cache"
|
|
@@ -60,7 +60,7 @@ Use the published npm package:
|
|
|
60
60
|
1. Update `version` in `/package.json`.
|
|
61
61
|
2. Login: `npm login`.
|
|
62
62
|
3. Publish: `npm publish --access public`.
|
|
63
|
-
4. Verify install: `npx -y -p tryastro-mcp
|
|
63
|
+
4. Verify install: `npx -y -p tryastro-mcp tryastro-mcp`.
|
|
64
64
|
|
|
65
65
|
## Data and source model
|
|
66
66
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tryastro-mcp",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"description": "MCP server for TryAstro scenarios and standard support requests",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "server.js",
|
|
@@ -13,7 +13,8 @@
|
|
|
13
13
|
"app-store-optimization"
|
|
14
14
|
],
|
|
15
15
|
"bin": {
|
|
16
|
-
"astro-mcp": "./bin/astro-mcp.js"
|
|
16
|
+
"astro-mcp": "./bin/astro-mcp.js",
|
|
17
|
+
"tryastro-mcp": "./bin/astro-mcp.js"
|
|
17
18
|
},
|
|
18
19
|
"exports": {
|
|
19
20
|
".": "./server.js"
|