@aithr-ai/mcp-server 1.0.6 → 1.0.7

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 +20 -6
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -14,14 +14,28 @@ claude mcp add --transport stdio aether \
14
14
  ```
15
15
 
16
16
  ### Windows
17
- ```cmd
18
- claude mcp add --transport stdio aether ^
19
- --env AETHER_API_KEY=YOUR_KEY ^
20
- --env AETHER_WORKSPACE_ID=your-workspace ^
21
- --env AETHER_PROJECT_ID=your-project-id ^
22
- -s user -- cmd /c npx -y @aithr-ai/mcp-server
17
+
18
+ Add this to your `~/.claude.json` file (in the `mcpServers` object):
19
+
20
+ ```json
21
+ {
22
+ "mcpServers": {
23
+ "aether": {
24
+ "type": "stdio",
25
+ "command": "cmd",
26
+ "args": ["/c", "npx", "-y", "@aithr-ai/mcp-server"],
27
+ "env": {
28
+ "AETHER_API_KEY": "YOUR_KEY",
29
+ "AETHER_WORKSPACE_ID": "your-workspace",
30
+ "AETHER_PROJECT_ID": "your-project-id"
31
+ }
32
+ }
33
+ }
34
+ }
23
35
  ```
24
36
 
37
+ > **Note**: The `claude mcp add` command has a bug on Windows that drops the command args. Manual config is required.
38
+
25
39
  ## Get Your Credentials
26
40
 
27
41
  Visit [https://www.aithr.ai/settings/mcp-install](https://www.aithr.ai/settings/mcp-install) for personalized install commands with your API key and project ID.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aithr-ai/mcp-server",
3
- "version": "1.0.6",
3
+ "version": "1.0.7",
4
4
  "description": "MCP server to connect Claude Code to Aether canvas - AI-powered team workspace for software development",
5
5
  "main": "index.js",
6
6
  "bin": {