@eternalai-org/mcp-server 1.0.4 → 1.0.5
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 +9 -9
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -12,13 +12,13 @@ A Model Context Protocol (MCP) server for Eternal AI that provides tools for ima
|
|
|
12
12
|
|
|
13
13
|
## Environment Variables
|
|
14
14
|
|
|
15
|
-
- **ETERNAL_AI_API_KEY** (required): Your
|
|
15
|
+
- **ETERNAL_AI_API_KEY** (required): Your API key from [eternalai.org/api/keys](https://eternalai.org/api/keys).
|
|
16
16
|
- **SAVE_FILE_PATH** (optional): Directory or file path where generated files should be saved. If not set, files are saved to the current working directory.
|
|
17
17
|
|
|
18
18
|
### Example
|
|
19
19
|
|
|
20
20
|
```bash
|
|
21
|
-
|
|
21
|
+
npx @modelcontextprotocol/inspector -e ETERNAL_AI_API_KEY=your_api_key_here npx @eternalai-org/mcp-server@latest
|
|
22
22
|
```
|
|
23
23
|
|
|
24
24
|
## Usage with MCP Clients
|
|
@@ -37,10 +37,10 @@ Add the following to your Claude Desktop configuration file:
|
|
|
37
37
|
"command": "npx",
|
|
38
38
|
"args": [
|
|
39
39
|
"-y",
|
|
40
|
-
"@eternalai-org/mcp-server"
|
|
40
|
+
"@eternalai-org/mcp-server@latest"
|
|
41
41
|
],
|
|
42
42
|
"env": {
|
|
43
|
-
"ETERNAL_AI_API_KEY": "
|
|
43
|
+
"ETERNAL_AI_API_KEY": "your_api_key_here"
|
|
44
44
|
}
|
|
45
45
|
}
|
|
46
46
|
}
|
|
@@ -58,10 +58,10 @@ Add to your Cursor MCP settings (Settings → Features → MCP):
|
|
|
58
58
|
"command": "npx",
|
|
59
59
|
"args": [
|
|
60
60
|
"-y",
|
|
61
|
-
"@eternalai-org/mcp-server"
|
|
61
|
+
"@eternalai-org/mcp-server@latest"
|
|
62
62
|
],
|
|
63
63
|
"env": {
|
|
64
|
-
"ETERNAL_AI_API_KEY": "
|
|
64
|
+
"ETERNAL_AI_API_KEY": "your_api_key_here"
|
|
65
65
|
}
|
|
66
66
|
}
|
|
67
67
|
}
|
|
@@ -83,10 +83,10 @@ Add to your Claude Code MCP settings:
|
|
|
83
83
|
"command": "npx",
|
|
84
84
|
"args": [
|
|
85
85
|
"-y",
|
|
86
|
-
"@eternalai-org/mcp-server"
|
|
86
|
+
"@eternalai-org/mcp-server@latest"
|
|
87
87
|
],
|
|
88
88
|
"env": {
|
|
89
|
-
"ETERNAL_AI_API_KEY": "
|
|
89
|
+
"ETERNAL_AI_API_KEY": "your_api_key_here"
|
|
90
90
|
}
|
|
91
91
|
}
|
|
92
92
|
}
|
|
@@ -173,7 +173,7 @@ File names are automatically generated with timestamps: `result-2026-01-27T08-01
|
|
|
173
173
|
## Requirements
|
|
174
174
|
|
|
175
175
|
- Node.js 18.0.0 or higher
|
|
176
|
-
- Eternal AI API key
|
|
176
|
+
- Eternal AI API key from [eternalai.org/api/keys](https://eternalai.org/api/keys)
|
|
177
177
|
|
|
178
178
|
## License
|
|
179
179
|
|