ManualWorks MCP
Enables keyword searching across ManualWorks documents by combining document and chapter APIs to provide content snippets and URLs. It allows users to search and retrieve documentation data through natural language when a native search API is unavailable.
README
manual-works-mcp
ManualWorks 문서 검색을 위한 MCP(Model Context Protocol) 서버입니다.
ManualWorks에 검색 API가 없어서, 문서 목록/내용 API를 조합하여 키워드 검색 기능을 제공합니다.
설치
git clone https://github.com/plainday/manual-works-mcp.git
cd manual-works-mcp
uv 사용 (권장)
uv venv
uv pip install -e .
pip 사용
python -m venv .venv
가상환경 활성화:
# Windows
.venv\Scripts\activate
# macOS / Linux
source .venv/bin/activate
패키지 설치:
pip install -e .
환경변수 설정
| 이름 | 설명 | 예시 |
|---|---|---|
MANUALWORKS_BASE_URL |
ManualWorks 서버 URL | http://127.0.0.1:1975 |
MANUALWORKS_API_UUID |
API UUID | 5b969d63e97cfec7 |
사용법
MCP Inspector로 테스트
mcp dev src/manual_works_mcp/server.py
Claude Desktop 설정
Claude Desktop 메뉴에서 File > Settings > Developer > Edit Config를 클릭하여 설정 파일을 엽니다.
설정 파일 경로:
- Windows:
%APPDATA%\Claude\claude_desktop_config.json - macOS:
~/Library/Application Support/Claude/claude_desktop_config.json
uv 사용 (권장)
{
"mcpServers": {
"manual-works": {
"command": "uv",
"args": ["--directory", "/path/to/manual-works-mcp", "run", "-m", "manual_works_mcp.server"],
"env": {
"MANUALWORKS_BASE_URL": "http://127.0.0.1:1975",
"MANUALWORKS_API_UUID": "your-api-uuid"
}
}
}
}
Windows의 경우 경로에
\\를 사용합니다:"C:\\path\\to\\manual-works-mcp"
pip 사용 — Windows
{
"mcpServers": {
"manual-works": {
"command": "C:\\path\\to\\manual-works-mcp\\.venv\\Scripts\\python.exe",
"args": ["-m", "manual_works_mcp.server"],
"env": {
"MANUALWORKS_BASE_URL": "http://127.0.0.1:1975",
"MANUALWORKS_API_UUID": "your-api-uuid"
}
}
}
}
pip 사용 — macOS / Linux
{
"mcpServers": {
"manual-works": {
"command": "/path/to/manual-works-mcp/.venv/bin/python",
"args": ["-m", "manual_works_mcp.server"],
"env": {
"MANUALWORKS_BASE_URL": "http://127.0.0.1:1975",
"MANUALWORKS_API_UUID": "your-api-uuid"
}
}
}
}
경로는 실제 clone한 위치로 변경하세요. 설정 후 Claude Desktop을 재시작합니다.
MCP Tools
search_documents
키워드로 ManualWorks 문서를 검색합니다.
- 파라미터:
keyword(string) - 검색할 키워드 - 동작: 모든 문서의 장(chapter) 내용을 가져와 키워드 매칭 후 결과를 반환
- 반환: 매칭된 문서 제목, 장 제목, URL, 매칭된 내용 snippet
라이선스
Apache-2.0
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.