tryastro-mcp 0.1.4 → 0.2.0
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 +4 -4
- package/package.json +1 -2
- package/server.js +2 -2
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
#
|
|
1
|
+
# tryastro-mcp
|
|
2
2
|
|
|
3
3
|
MCP server for Cursor with:
|
|
4
4
|
- dedicated tools for core TryAstro scenarios;
|
|
@@ -43,9 +43,9 @@ Use the published npm package:
|
|
|
43
43
|
```json
|
|
44
44
|
{
|
|
45
45
|
"mcpServers": {
|
|
46
|
-
"
|
|
46
|
+
"tryastro-mcp": {
|
|
47
47
|
"command": "npx",
|
|
48
|
-
"args": ["-y", "
|
|
48
|
+
"args": ["-y", "tryastro-mcp@0.2.0"],
|
|
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
|
|
63
|
+
4. Verify install: `npx -y tryastro-mcp@0.2.0`.
|
|
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.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "MCP server for TryAstro scenarios and standard support requests",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "server.js",
|
|
@@ -13,7 +13,6 @@
|
|
|
13
13
|
"app-store-optimization"
|
|
14
14
|
],
|
|
15
15
|
"bin": {
|
|
16
|
-
"astro-mcp": "./bin/astro-mcp.js",
|
|
17
16
|
"tryastro-mcp": "./bin/astro-mcp.js"
|
|
18
17
|
},
|
|
19
18
|
"exports": {
|