openemr-wiki-mcp
A local-first MCP server that provides fast access to OpenEMR wiki pages, users guide, and selected API documentation through tools like search, page retrieval, and category listing.
README
openemr-wiki-mcp
A quick local-first MCP server for OpenEMR documentation.
I made this as a small practical implementation so I could get fast local access to OpenEMR wiki pages, the Users Guide, and selected API docs inside desktop AI apps, coding agents, and other MCP-capable tools.
This repository is intentionally focused on local usage. It does not try to be a full hosted platform or production-ready remote service.
Tools
| Tool | Description | Key Parameters |
|---|---|---|
search_openemr_wiki |
Search the OpenEMR wiki for any topic. Returns titles, summaries, and URLs. | query (string), limit (1–10, default 5) |
get_openemr_wiki_page |
Fetch the plain-text content of a specific wiki page by title, optionally narrowed to a section. | title (string), section (optional string) |
get_users_guide_toc |
Fetch the table of contents from the OpenEMR 8.0.0 Users Guide. | (none) |
get_openemr_api_docs |
Fetch selected OpenEMR API documentation from the OpenEMR GitHub repository. | doc (fhir, standard, smart_on_fhir) |
list_wiki_pages_by_category |
List wiki pages in a given MediaWiki category. | category (string) |
Requirements
- Node 18+
- npm
Quick Start
This is a local stdio MCP server. That is the supported usage mode in this repo today.
Install And Build
git clone https://github.com/rucister/openemr-wiki-mcp.git
cd openemr-wiki-mcp
npm install
npm run build
npm install -g .
Verify the global binary if you want to use the npm-installed command directly:
which openemr-wiki-mcp
Install Inside WSL On A Local Windows Computer
If you want the MCP server to run inside WSL, do the install from your WSL shell, not from Windows PowerShell:
cd /path/to/openemr-wiki-mcp
npm install
npm run build
npm install -g .
which openemr-wiki-mcp
The last command should print a Linux path inside WSL, for example:
/home/ubuntu/.nvm/versions/node/v22.16.0/bin/openemr-wiki-mcp
Use It Locally
VS Code
Open the Command Palette and run MCP: Open User Configuration, then add:
{
"servers": {
"openemr-wiki": {
"type": "stdio",
"command": "openemr-wiki-mcp"
}
}
}
If VS Code cannot find the global binary, replace openemr-wiki-mcp with the absolute Linux or macOS path returned by which openemr-wiki-mcp.
Claude Code
Register the local stdio server:
claude mcp add --scope user --transport stdio openemr-wiki openemr-wiki-mcp
Verify:
claude mcp list
If the command is not found because the client does not load your shell profile, register the absolute binary path instead of openemr-wiki-mcp.
Claude Desktop
Config file:
- Windows:
%APPDATA%\Claude\claude_desktop_config.json - Linux/WSL:
~/.config/Claude/claude_desktop_config.json - macOS:
~/Library/Application Support/Claude/claude_desktop_config.json
If Claude Desktop and the MCP server run in the same Linux or macOS environment, use this local stdio configuration:
{
"mcpServers": {
"openemr-wiki": {
"command": "openemr-wiki-mcp"
}
}
}
If Claude Desktop is running on Windows and the MCP server is installed inside WSL, use wsl.exe and the exact distro name:
{
"mcpServers": {
"openemr-wiki": {
"command": "wsl.exe",
"args": [
"-d",
"Ubuntu-22.04",
"-e",
"/home/your-user/.nvm/versions/node/v22.16.0/bin/node",
"/home/your-user/path/to/openemr-wiki-mcp/dist/index.js"
]
}
}
}
Notes:
- Replace
Ubuntu-22.04with the exact output ofwsl -l -qfrom Windows. - Using the built
dist/index.jspath is more reliable than depending on the global shim. - Restart Claude Desktop after saving the config.
If You Want To Host It
This repository does not include a remote HTTP MCP transport or deployment setup.
If you want to put this online, use this project as a starting point and add the pieces that a public or shared deployment needs:
- remote MCP transport
- authentication and access control
- rate limiting
- caching
- deployment and monitoring
If someone wants to take this local-first implementation and evolve it into a hosted version, that is a good next step for a fork or contribution.
Update
git pull && npm run build && npm install -g .
Common Gotchas
- If
openemr-wiki-mcpis not found afternpm install -g ., your npm global bin directory is probably not inPATH. - If Claude Code or Claude Desktop does not pick up your shell profile, use the absolute path from
which openemr-wiki-mcpinstead of the bare command name. - If Claude Desktop on Windows launches the server through WSL, the distro name after
-dmust exactly match the output ofwsl -l -q, for exampleUbuntu-22.04. - This is a stdio MCP server, so do not use
console.log()for debugging. Write diagnostics to stderr withconsole.error().
License
MIT. See LICENSE.
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。