@axolot-ai/mcp-server 0.0.1
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 +43 -0
- package/package.json +26 -0
package/README.md
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
# Axolot MCP Server
|
|
2
|
+
|
|
3
|
+
Model Context Protocol (MCP) server for Axolot CMS. Give your AI assistant "hands" to manage your website content, structure, and infrastructure.
|
|
4
|
+
|
|
5
|
+
## Features
|
|
6
|
+
|
|
7
|
+
- **Master Content Tools**: List pages, read slots, and update content in real-time.
|
|
8
|
+
- **Media Library Access**: Allow AI to browse and select assets for your site.
|
|
9
|
+
- **Design Token Awareness**: Give AI context about your brand's colors, typography, and spacing.
|
|
10
|
+
- **Zero-Effort Integration**: Works with Cursor, Claude Desktop, Zed, and any MCP-compatible client.
|
|
11
|
+
|
|
12
|
+
## Quickstart
|
|
13
|
+
|
|
14
|
+
### Using npx (Recommended)
|
|
15
|
+
|
|
16
|
+
Add this to your MCP settings (e.g., `claude_desktop_config.json`):
|
|
17
|
+
|
|
18
|
+
```json
|
|
19
|
+
{
|
|
20
|
+
"mcpServers": {
|
|
21
|
+
"axolot": {
|
|
22
|
+
"command": "npx",
|
|
23
|
+
"args": ["-y", "@axolot-ai/mcp-server"]
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
### Authentication
|
|
30
|
+
|
|
31
|
+
Once the server is running, use the following tools in your AI chat:
|
|
32
|
+
|
|
33
|
+
1. `cms_auth_login`: To connect your account.
|
|
34
|
+
2. `cms_auth_status`: To verify the connection.
|
|
35
|
+
3. `cms_switch_site`: To select the target site.
|
|
36
|
+
|
|
37
|
+
## Documentation
|
|
38
|
+
|
|
39
|
+
Full documentation available at [axolot-cms.com/docs/mcp](https://axolot-cms.com/docs/mcp).
|
|
40
|
+
|
|
41
|
+
## License
|
|
42
|
+
|
|
43
|
+
MIT
|
package/package.json
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@axolot-ai/mcp-server",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"description": "MCP server exposing AxolotCMS tools to AI designers",
|
|
6
|
+
"bin": {
|
|
7
|
+
"axolot-mcp": "./dist/index.js"
|
|
8
|
+
},
|
|
9
|
+
"files": [
|
|
10
|
+
"dist"
|
|
11
|
+
],
|
|
12
|
+
"scripts": {
|
|
13
|
+
"dev": "tsx watch src/index.ts",
|
|
14
|
+
"build": "tsc",
|
|
15
|
+
"start": "node dist/index.js"
|
|
16
|
+
},
|
|
17
|
+
"dependencies": {
|
|
18
|
+
"@modelcontextprotocol/sdk": "^1.10.2",
|
|
19
|
+
"zod": "^3.24.4"
|
|
20
|
+
},
|
|
21
|
+
"devDependencies": {
|
|
22
|
+
"@types/node": "^22.15.3",
|
|
23
|
+
"tsx": "^4.19.4",
|
|
24
|
+
"typescript": "^5.8.3"
|
|
25
|
+
}
|
|
26
|
+
}
|