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.
Files changed (3) hide show
  1. package/README.md +4 -4
  2. package/package.json +1 -2
  3. package/server.js +2 -2
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # astro-mcp
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
- "astro-mcp": {
46
+ "tryastro-mcp": {
47
47
  "command": "npx",
48
- "args": ["-y", "-p", "tryastro-mcp", "tryastro-mcp"],
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 -p tryastro-mcp tryastro-mcp`.
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.1.4",
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": {
package/server.js CHANGED
@@ -2,8 +2,8 @@
2
2
  import process from "node:process";
3
3
 
4
4
  const SERVER_INFO = {
5
- name: "astro-mcp",
6
- version: "0.1.4",
5
+ name: "tryastro-mcp",
6
+ version: "0.2.0",
7
7
  };
8
8
 
9
9
  const PROTOCOL_VERSION = "2024-11-05";