@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.
- package/README.md +20 -6
- 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
|
-
|
|
18
|
-
claude
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
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.
|