Docusaurus
БесплатноНе проверенGeneric MCP server for any Docusaurus documentation site - search, browse, and read docs
Описание
Generic MCP server for any Docusaurus documentation site - search, browse, and read docs
README
Python TypeScript MCP License: MIT
A collection of Model Context Protocol servers for databases, remote access, automation, and developer tools. Each server works standalone with any MCP-compatible client.
Servers
Database
| Server | Package | Description |
|---|---|---|
| PostgreSQL MCP | mapeg-postgres-mcp | Query, explore, and analyze PostgreSQL databases with natural language support |
| Oracle MCP | mapeg-oracle-mcp | Oracle 11g–23ai with PL/SQL source, DBMS_OUTPUT, and auto version detection |
Automation & Integrations
| Server | Package | Description |
|---|---|---|
| n8n Chatbot MCP | n8n-chatbot-mcp | Turn any n8n Chat Trigger webhook into an MCP tool with auto-discovery |
| GIB API MCP | gib-api-mcp | Turkish Revenue Administration (GIB) e-invoice API integration |
Remote Access
| Server | Package | Description |
|---|---|---|
| SSH MCP | mcp-server-ssh | Remote command execution over SSH with session logging |
| Asger Terminal MCP | asger-terminal-mcp | Interactive web terminal with screenshot and OCR support |
Documentation
| Server | Package | Description |
|---|---|---|
| Docusaurus MCP | docusaurus-mcp | Search, browse, and read any Docusaurus documentation site |
Developer Tools
| Server | Package | Description |
|---|---|---|
| Gemini Reviews MCP | gemini-reviews-mcp | Fetch Gemini Code Assist PR reviews from GitHub |
| Agent Chat MCP | agent-chat-mcp | Multi-room chat for Claude Code agent instances |
Quick Start
Install any server with a single command — no virtual environment needed:
# Python servers
uvx mapeg-postgres-mcp
uvx mapeg-oracle-mcp
uvx n8n-chatbot-mcp
uvx docusaurus-mcp
uvx gemini-reviews-mcp
uvx mcp-server-ssh
uvx agent-chat-mcp
# Node.js servers
npx -y asger-terminal-mcp
npx -y gib-api-mcp
Claude Code
claude mcp add postgres \
-e DB_HOST=localhost \
-e DB_PORT=5432 \
-e DB_NAME=mydb \
-e DB_USER=postgres \
-e DB_PASSWORD=secret \
-- uvx mapeg-postgres-mcp
Claude Desktop
Add to your config file:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"postgres": {
"command": "uvx",
"args": ["mapeg-postgres-mcp"],
"env": {
"DB_HOST": "localhost",
"DB_PORT": "5432",
"DB_NAME": "mydb",
"DB_USER": "postgres",
"DB_PASSWORD": "secret"
}
},
"oracle": {
"command": "uvx",
"args": ["mapeg-oracle-mcp"],
"env": {
"ORACLE_CONNECTION_STRING": "User Id=myuser;Password=mypass;Data Source=host:1521/service"
}
},
"my-chatbot": {
"command": "uvx",
"args": ["n8n-chatbot-mcp"],
"env": {
"N8N_CHATBOT_URL": "https://n8n.example.com/webhook/my-bot/chat"
}
}
}
}
Cursor
Add to ~/.cursor/mcp.json using the same format as Claude Desktop.
Windsurf
Add to Windsurf MCP config using the same format as Claude Desktop.
VS Code
Add to your VS Code settings (JSON):
"mcp": {
"servers": {
"postgres": {
"type": "stdio",
"command": "uvx",
"args": ["mapeg-postgres-mcp"],
"env": {
"DB_HOST": "localhost",
"DB_PORT": "5432",
"DB_NAME": "mydb",
"DB_USER": "postgres",
"DB_PASSWORD": "secret"
}
}
}
}
Gemini CLI
Add to ~/.gemini/settings.json:
{
"mcpServers": {
"postgres": {
"command": "uvx",
"args": ["mapeg-postgres-mcp"],
"env": {
"DB_HOST": "localhost",
"DB_PORT": "5432",
"DB_NAME": "mydb",
"DB_USER": "postgres",
"DB_PASSWORD": "secret"
}
}
}
}
GitHub Copilot
Add to ~/.copilot/mcp-config.json:
{
"mcpServers": {
"postgres": {
"command": "uvx",
"args": ["mapeg-postgres-mcp"],
"env": {
"DB_HOST": "localhost",
"DB_PORT": "5432",
"DB_NAME": "mydb",
"DB_USER": "postgres",
"DB_PASSWORD": "secret"
}
}
}
}
OpenAI Codex
Add to ~/.codex/config.toml:
[mcp_servers.postgres]
command = "uvx"
args = ["mapeg-postgres-mcp"]
[mcp_servers.postgres.env]
DB_HOST = "localhost"
DB_PORT = "5432"
DB_NAME = "mydb"
DB_USER = "postgres"
DB_PASSWORD = "secret"
Install from Source
# Python servers
cd mapeg-postgres-mcp
pip install -e .
# Node.js servers
cd asger-terminal-mcp
npm install
Query Logging
Database MCP servers include a built-in query_logger module that writes to a shared SQLite database at ~/.local/share/mapeg-mcp/query_logs.db. Each log entry includes:
db_identifier— which database (e.g.localhost:5432/mydb)workspace_path— which project directory
The get_query_history tool lets agents review their own recent queries, scoped to their database and workspace.
Query Dashboard
Monitor all database queries in real-time:
cd query_dashboard
pip install flask
python app.py
# Open http://localhost:5555
Supports filtering by server type, database, and workspace.
Security
- Store credentials in environment variables, not in code
- Use
READ_ONLY=truefor database servers when write access isn't needed - Prefer SSH key-based authentication over passwords
- All
.envfiles are gitignored
Contributing
- Fork the repository
- Create a feature branch (
git checkout -b feature/my-feature) - Commit your changes
- Push and open a Pull Request
Resources
License
MIT
Установка Docusaurus
У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.
▸ github.com/mytsx/mcp-serversFAQ
Docusaurus MCP бесплатный?
Да, Docusaurus MCP бесплатный — установка в пару кликов через Unyly без оплаты.
Нужен ли API-ключ для Docusaurus?
Нет, Docusaurus работает без API-ключей и переменных окружения.
Docusaurus — hosted или self-hosted?
Self-hosted: сервер запускается локально на твоей машине командой из раздела установки.
Как установить Docusaurus в Claude Desktop, Claude Code или Cursor?
Открой Docusaurus на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.
Похожие MCP
Notion
Read and write pages in your workspace
автор: NotionLinear
Issues, cycles, triage — from Claude
автор: LinearGoogle Drive
Search and read your Drive files
автор: Googlemindsdb/mindsdb
Connect and unify data across various platforms and databases with [MindsDB as a single MCP server](https://docs.mindsdb.com/mcp/overview).
автор: mindsdbCompare Docusaurus with
Не уверен что выбрать?
Найди свой стек за 60 секунд
Автор?
Embed-бейдж для README
Похожее
Все в категории productivity
