@paroicms/mcp-plugin
v0.3.6
Published
MCP (Model Context Protocol) plugin for ParoiCMS - enables AI assistants to search content
Downloads
1,038
Readme
ParoiCMS MCP Plugin (@paroicms/mcp-plugin)
MCP (Model Context Protocol) plugin for ParoiCMS. Enables AI assistants to search content in ParoiCMS sites. It contains:
- A backend plugin that exposes an HTTP API protected by Personal Access Tokens.
- A CLI tool that acts as an MCP server bridge between the AI agent and the remote backend.
This package is part of ParoiCMS.
Installation of the backend plugin
Install it:
npm i @paroicms/mcp-pluginEnable it in your site-schema.json:
{
"plugins": [
// ...
"@paroicms/mcp-plugin"
]
}Configuration of the MCP agent with the CLI tool
1. Create a Personal Access Token
- Go to your ParoiCMS Admin UI
- Navigate to User Settings → Personal Access Tokens
- Copy the token (it will only be shown once)
2. Configure your agent
Add to your configuration in .vscode/mcp.json (VS Code):
{
"servers": {
"paroicms-yoursite": {
"command": "npx",
"args": ["paroicms-mcp"],
"env": {
"PAROICMS_SITE_URL": "https://your-site.example.com",
"PAROICMS_PAT": "your-personal-access-token"
}
}
}
}License
Released under the MIT license.
