@growi/mcp-server
OfficialClick on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@@growi/mcp-serversearch for 'Q4 roadmap' in the company wiki"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
@growi/mcp-server
A Model Context Protocol (MCP) server that connects AI models to GROWI wiki content. Enables LLMs to search and retrieve information from your organization's knowledge base for accurate, context-aware responses. Supports connections to multiple GROWI apps.
Key Features
🔍 GROWI page search and retrieval
📝 Page management
🏷️ Tag management
📋 Comment management
🔗 Share link management
Supported GROWI Versions
GROWI v7.3.x or higher recommended
Some features are also available starting from GROWI v7.2.5 and later
Agent Skills
This repository also provides Agent Skills — reusable workflow definitions that AI coding agents can load to interact with GROWI more effectively.
Available Skills
growi-mcp-setup — Walks you through setting up the GROWI MCP server. After the skill is installed, it guides you from configuring UTCP Code-Mode through verifying the connection.
growi-smart-save — Save content to GROWI with intelligent path suggestions. The agent calls the
suggest-pathtool, presents destination candidates, and guides the user through page naming and visibility settings.
Quick Start (Recommended)
The fastest way to start using GROWI. Once you install the skill, the rest of the setup (connecting the MCP server, configuring UTCP Code-Mode, verifying connectivity) is guided by the AI agent.
1. Install the Skill
Install the skill for your agent.
Claude Desktop (Cowork)
Go to Customize > Personal Plugins (click the + icon)
Click Browse Plugins > select the Personal tab
Click the + icon next to Local Upload
Select Add marketplace from GitHub
Enter the repository URL and click Sync:
https://github.com/growilabs/growi-mcp-serverClaude Code
Add this repository as a plugin marketplace, then install the plugin:
/plugin marketplace add growilabs/growi-mcp-server
/plugin install mcp-client-skillsGemini CLI
Install as a Gemini CLI extension (includes both MCP tools and skills):
gemini extensions install https://github.com/growilabs/growi-mcp-serverUpdate with:
gemini extensions update growi-mcp-serverSkills.sh (Vercel)
Works with Claude Code, Gemini CLI, Cursor, Codex, GitHub Copilot, and many other agents:
npx skills add growilabs/growi-mcp-serverUpdate with:
npx skills updateManual Installation
Download skills directly from the repository and place them in your agent's skills directory:
Copy the desired skill directory from
skills/in this repositoryPlace it in your agent's skills directory:
Claude Code:
.claude/skills/<skill-name>/SKILL.mdGemini CLI:
.gemini/skills/<skill-name>/SKILL.mdOther agents:
.agents/skills/<skill-name>/SKILL.md
2. Restart Your Agent
After installation, restart (or reload) your agent so the skill is recognized.
3. Ask the AI to Set Up
Tell your agent "set up GROWI", and the growi-mcp-setup skill will start and guide you from the MCP server connection settings through verifying connectivity.
If you want to configure the MCP server directly without the skill, seeUse the MCP Server Directly.
Use the MCP Server Directly
You can also register the MCP server directly with your agent instead of using the skill. Use this for a minimal setup, or as a fallback when skill-based setup is not available.
Supports simultaneous connections to multiple GROWI apps. Each app is configured using numbered environment variables.
Single App Configuration Example
{
"mcpServers": {
"growi": {
"command": "npx",
"args": ["@growi/mcp-server"],
"env": {
"GROWI_APP_NAME_1": "main",
"GROWI_BASE_URL_1": "https://your-growi-instance.com",
"GROWI_API_TOKEN_1": "your_growi_api_token"
}
}
}
}Multiple Apps Configuration Example
{
"mcpServers": {
"growi": {
"command": "npx",
"args": ["@growi/mcp-server"],
"env": {
"GROWI_DEFAULT_APP_NAME": "staging",
"GROWI_APP_NAME_1": "production",
"GROWI_BASE_URL_1": "https://wiki.example.com",
"GROWI_API_TOKEN_1": "token_for_production",
"GROWI_APP_NAME_2": "staging",
"GROWI_BASE_URL_2": "https://wiki-staging.example.com",
"GROWI_API_TOKEN_2": "token_for_staging",
"GROWI_APP_NAME_3": "development",
"GROWI_BASE_URL_3": "https://wiki-dev.example.com",
"GROWI_API_TOKEN_3": "token_for_development"
}
}
}
}For skill-based setup (recommended), seeQuick Start.
Available Tools (Features)
Page Management
searchPages- Search pages by keywordscreatePage- Create a new pageupdatePage- Update an existing pagedeletePages- Delete pages (bulk operation supported)duplicatePage- Duplicate a page (including child pages)renamePage- Change page name and pathgetPage- Get a page datagetPageInfo- Get detailed page informationgetRecentPages- Get list of recently updated pagesgetPageListingRoot- Get root page listgetPageListingChildren- Get child pages of specified pagepageListingInfo- Get summary information of page listingspublishPage/unpublishPage- Set page publish/unpublish status
Tag Management
getPageTag- Get tags of a pageupdateTag- Update tags of a pagegetTagList- Get list of tagssearchTags- Search tags
Comments & Discussions
getComments- Get comments of a page
Revision Management
listRevisions- Get page edit historygetRevision- Get details of a specific revision
Share Links
createShareLink- Create a share linkgetShareLinks- Get share links of a pagedeleteShareLinks- Delete share linksdeleteShareLinkById- Delete a specific share link
User Information
getUserRecentPages- Get recent pages of a specific user
Configuration Options
Environment Variables
Variable Name | Required | Description | Default Value |
| ✅ | GROWI app identifier name (N is an integer) | - |
| ✅ | Base URL of GROWI instance (N is an integer) | - |
| ✅ | GROWI API access token (N is an integer) | - |
| ❌ | Default app name to use | First configured app |
Multiple Apps Configuration Notes
Use integer values (1, 2, 3...) for each app configuration (sequential numbering is not required)
Combination of
GROWI_APP_NAME_N,GROWI_BASE_URL_N, andGROWI_API_TOKEN_Nis requiredApp names, base URLs, and API tokens must each be unique
If
GROWI_DEFAULT_APP_NAMEis omitted, the first configured app becomes the defaultThe app specified in
GROWI_DEFAULT_APP_NAMEwill be used as the default app when the LLM does not explicitly include an app name in the prompt
Developer Information
Requirements
Node.js 18 or higher
pnpm (recommended)
GROWI instance (for development and testing)
Getting Started
Clone the repository
git clone https://github.com/growilabs/growi-mcp-server.git
cd growi-mcp-serverInstall dependencies
pnpm installSet up environment variables
cp .env.example .env.local
# Edit .env.local to enter GROWI connection informationStart the development server
# Test with MCP CLI
pnpm dev:cli
# Develop with MCP Inspector
pnpm dev:inspectBuild and Test
# Build
pnpm build
# Lint
pnpm lint
# Run tests
pnpm test
# Run tests with coverage
pnpm test:coverage
# Run in production
pnpm startMCP Server Configuration
Build
pnpm buildMCP Server Configuration (Single App)
{
"mcpServers": {
"growi": {
"command": "node",
"args": ["/Users/username/projects/growi-mcp-server/dist/index.js"],
"env": {
"GROWI_APP_NAME_1": "main",
"GROWI_BASE_URL_1": "https://your-growi-instance.com",
"GROWI_API_TOKEN_1": "your_growi_api_token"
}
}
}
}MCP Server Configuration (Multiple Apps)
{
"mcpServers": {
"growi": {
"command": "node",
"args": ["/Users/username/projects/growi-mcp-server/dist/index.js"],
"env": {
"GROWI_DEFAULT_APP_NAME": "production",
"GROWI_APP_NAME_1": "production",
"GROWI_BASE_URL_1": "https://wiki.example.com",
"GROWI_API_TOKEN_1": "production_token",
"GROWI_APP_NAME_2": "staging",
"GROWI_BASE_URL_2": "https://wiki-staging.example.com",
"GROWI_API_TOKEN_2": "staging_token"
}
}
}
}Set the absolute path to the built output in "args"
Troubleshooting
When unable to connect to GROWI
Check connectivity
curl -v http://app:3000/_api/v3/healthcheckIf the
apphostname cannot be resolved, check the devcontainer network and verify it includesgrowi_devcontainer_defaultThe
.devcontainer/devcontainer.jsonfile sets--networkinrunArgs, so rebuilding the container should apply this settingTo add manually, run the following:
Run
docker networkcommand on the docker host machine
docker network connect growi_devcontainer_default growi-mcp-server-dev
Contributing
Contributions to the project are welcome!
How to Contribute
Issue Reports: Bug reports and feature requests via GitHub Issues
Pull Requests:
Fork and create a branch
Implement changes
Add tests (if applicable)
Create a pull request
Development Guidelines
Coding Standards: Use Biome
Commit Messages: Follow Conventional Commits
License
This project is released under the MIT License.
Related Links
GROWI Official Site - Open source wiki platform
Model Context Protocol - Standard protocol for AI and tool integration
GROWI SDK TypeScript - GROWI API TypeScript SDK
FastMCP - MCP server development framework
Notice
This MCP server is under development. APIs may change without notice. Please test thoroughly before using in production environments.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/growilabs/growi-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server