@latellu/atlas-mcp 1.0.1 → 1.0.3
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 +11 -14
- package/package.json +1 -9
package/README.md
CHANGED
|
@@ -61,6 +61,17 @@ atlas-mcp
|
|
|
61
61
|
|
|
62
62
|
## Configuration
|
|
63
63
|
|
|
64
|
+
### Getting an API Key
|
|
65
|
+
|
|
66
|
+
1. Open the Atlas dashboard: **https://cms.atlas.latellu.com**
|
|
67
|
+
2. Go to **Settings → API Keys**
|
|
68
|
+
3. Click **Create API Key**, give it a name, and save
|
|
69
|
+
4. Copy the key — it is only shown once
|
|
70
|
+
|
|
71
|
+
**Key types:**
|
|
72
|
+
- `atlas_live_*` — Read-only access (delivery API). Use for fetching content.
|
|
73
|
+
- `atlas_mgmt_*` — Read-write access (management API). Use for creating/updating content.
|
|
74
|
+
|
|
64
75
|
### Environment Variables
|
|
65
76
|
|
|
66
77
|
| Variable | Required | Description |
|
|
@@ -210,20 +221,6 @@ The MCP server connects to Atlas via REST API:
|
|
|
210
221
|
└───────────────────┘
|
|
211
222
|
```
|
|
212
223
|
|
|
213
|
-
## Contributing
|
|
214
|
-
|
|
215
|
-
Contributions are welcome! Please feel free to submit a Pull Request.
|
|
216
|
-
|
|
217
|
-
1. Fork the repository
|
|
218
|
-
2. Create your feature branch (`git checkout -b feature/amazing-feature`)
|
|
219
|
-
3. Commit your changes (`git commit -m 'feat: add amazing feature'`)
|
|
220
|
-
4. Push to the branch (`git push origin feature/amazing-feature`)
|
|
221
|
-
5. Open a Pull Request
|
|
222
|
-
|
|
223
|
-
## Issues
|
|
224
|
-
|
|
225
|
-
If you encounter any issues or have questions, please open an issue on the [GitHub repository](https://github.com/tenriajeng/atlas-mcp/issues).
|
|
226
|
-
|
|
227
224
|
## License
|
|
228
225
|
|
|
229
226
|
MIT License
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@latellu/atlas-mcp",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -33,14 +33,6 @@
|
|
|
33
33
|
],
|
|
34
34
|
"author": "Latellu",
|
|
35
35
|
"license": "MIT",
|
|
36
|
-
"repository": {
|
|
37
|
-
"type": "git",
|
|
38
|
-
"url": "https://github.com/tenriajeng/atlas-mcp.git"
|
|
39
|
-
},
|
|
40
|
-
"bugs": {
|
|
41
|
-
"url": "https://github.com/tenriajeng/atlas-mcp/issues"
|
|
42
|
-
},
|
|
43
|
-
"homepage": "https://github.com/tenriajeng/atlas-mcp#readme",
|
|
44
36
|
"dependencies": {
|
|
45
37
|
"@modelcontextprotocol/sdk": "^1.6.1",
|
|
46
38
|
"zod": "^3.22.0"
|