Tawaz MCP
Tawaz DocStudio
궁극의 리서치 및 문서화 엔진
문서, 다이어그램, 차트, 인용을 생성하는 방식을 혁신하세요 — 단 하나의 MCP 서버로 모든 것이 가능합니다.
Tawaz MCP는 또 하나의 문서 생성기가 아닙니다. AI 어시스턴트를 문서화 파워하우스로 바꿔주는 완전한 기능의 리서치 워크플로 엔진입니다.
Word 문서를 만들고, PowerPoint 덱을 제작하고, Excel 시트를 생성하고, 플로차트를 그리고, 차트를 렌더링하고, 인용을 관리하세요. 단 한 번의 도구 호출로 모두 가능합니다.
왜 Tawaz DocStudio인가?
기능 | 설명 |
DOCX | 제목, 표, 글머리 기호가 포함된 Word 문서 생성 및 편집 |
PPTX | 스타일이 적용된 슬라이드로 PowerPoint 프레젠테이션 제작 |
XLSX | 여러 시트가 포함된 Excel 스프레드시트 생성 |
다이어그램 | Graphviz를 통한 플로차트, 조직도, 마인드맵 |
차트 | Matplotlib를 통한 막대, 꺾은선, 산점도, 원형, 히트맵 차트 |
인용 | BibTeX/RIS 파싱, APA/MLA/IEEE 참고문헌 생성 |
검색 | 프로젝트 내 모든 문서에 대한 전역 검색 |
구조 | 리서치 프로젝트 폴더 레이아웃 자동 생성 |
Related MCP server: wps-mcp-server
설치
사전 요구 사항
설정
# Clone the repo
git clone https://github.com/Rockstar-1281/tawaz-mcp.git
cd tawaz-mcp
# Install Node.js dependencies
npm install
# Install Python dependencies
py -m pip install graphviz matplotlib bibtexparser pillow어디서나 작동
Tawaz MCP는 Model Context Protocol (MCP) — 모든 주요 AI 코딩 도구가 지원하는 개방형 표준 — 을 사용합니다. 다음과 함께 작동합니다:
클라이언트 | 구성 위치 |
OpenCode |
|
Claude Code |
|
Codex CLI |
|
Cursor |
|
Windsurf |
|
Zed |
|
Cline |
|
사용자 지정 앱 | 모든 MCP 클라이언트 — 서버를 가리키기만 하면 됩니다 |
OpenCode
{
"mcpServers": {
"tawaz": {
"command": "node",
"args": ["C:\\path\\to\\tawaz-mcp\\index.js"]
}
}
}Claude Code
{
"mcpServers": {
"tawaz": {
"command": "node",
"args": ["C:\\path\\to\\tawaz-mcp\\index.js"]
}
}
}Codex CLI
[mcp_servers.tawaz]
command = "node"
args = ["C:\\path\\to\\tawaz-mcp\\index.js"]Cursor / Windsurf
{
"mcpServers": {
"tawaz": {
"command": "node",
"args": ["C:\\path\\to\\tawaz-mcp\\index.js"]
}
}
}참고:
C:\path\to\tawaz-mcp를 클론한 저장소의 실제 경로로 바꾸세요.
사용 가능한 도구
문서 도구
도구 | 기능 |
| 제목, 표, 글머리 기호가 포함된 Word 문서 생성 |
| 기존 DOCX에 콘텐츠 추가, 앞에 삽입 또는 교체 |
| PowerPoint 프레젠테이션 제작 |
| 기존 PPTX에 새 슬라이드 추가 |
| Excel 스프레드시트 생성 |
| 행 추가, 셀 업데이트, 시트 관리 |
시각적 인텔리전스
도구 | 기능 |
| 플로차트, 조직도, 마인드맵 생성 (Graphviz) |
| 막대, 꺾은선, 산점도, 원형, 히트맵 차트 생성 (Matplotlib) |
인용 관리
도구 | 기능 |
| BibTeX, RIS 또는 JSON 인용 파일 파싱 |
| APA, MLA, Chicago, IEEE 참고문헌 생성 |
| 개별 본문 내 인용 형식 지정 |
프로젝트 유틸리티
도구 | 기능 |
| 리서치 프로젝트 폴더 구조 생성 |
| 폴더 내 모든 문서 검색 |
| 파일 메타데이터 가져오기 |
예제
플로차트 만들기
create_diagram({
type: "flowchart",
output: "./assets/diagrams/methodology",
title: "Research Methodology",
data: "Data Collection -> Analysis -> Validation -> Report"
});차트 생성하기
create_chart({
type: "bar",
output: "./assets/charts/sales",
title: "Q3 Sales",
data: JSON.stringify({ "Widget A": 150, "Widget B": 200, "Widget C": 180 }),
ylabel: "Units Sold"
});BibTeX 참고문헌 파싱하기
parse_references({
inputPath: "./references.bib",
format: "bibtex"
});APA 참고문헌 생성하기
generate_bibliography({
references: JSON.stringify([
{
key: "smith2023",
type: "article",
fields: {
author: "Smith, John",
title: "AI Research",
year: "2023",
journal: "Nature"
}
}
]),
style: "apa"
});리서치 프로젝트 만들기
create_project_structure({
projectName: "my-research",
basePath: "C:\\Users\\user\\Documents"
});다음을 생성합니다:
my-research/
├── assets/
│ ├── diagrams/
│ ├── charts/
│ └── images/
├── citations/
├── documents/
└── exports/DOCX 보고서 만들기
create_docx({
outputPath: "./report.docx",
title: "Research Report",
content: [
{ type: "heading", text: "1. Introduction", level: 1 },
{ type: "paragraph", text: "This report presents our findings." },
{ type: "heading", text: "2. Methodology", level: 1 },
{ type: "paragraph", text: "See Figure 1 for the process flow." },
{
type: "table",
rows: [
["Metric", "Value"],
["Sample Size", "1000"],
["Confidence", "95%"]
]
}
]
});지원 형식
형식 | 생성 | 편집 |
DOCX | ✅ | ✅ |
PPTX | ✅ | ✅ |
XLSX | ✅ | ✅ |
시각적 인텔리전스
다이어그램 유형 | 차트 유형 | 인용 스타일 |
Flowchart | Bar | APA |
Org Chart | Line | MLA |
Mind Map | Scatter | Chicago |
Mermaid | Pie | IEEE |
Heatmap | ||
Grouped |
기여
기여는 언제나 환영합니다! 저장소를 포크하고, 기능 브랜치를 만들고, PR을 제출하세요.
git checkout -b feature/amazing-feature
git commit -m "Add amazing feature"
git push origin feature/amazing-feature라이선스
ISC 라이선스 — 자세한 내용은 LICENSE를 참조하세요.
❤️를 담아 Rockstar-1281이 제작했습니다
유용하다면 저장소에 Star ⭐를 눌러주세요!
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseBqualityDmaintenanceEnables complete Office document lifecycle management for AI agents, including creation, editing, conversion, and templating of DOCX, XLSX, PPTX, PDF, and EML files.40MIT
- AlicenseNot gradedqualityDmaintenanceEnables AI agents to natively create and edit WPS Office documents, spreadsheets, and presentations via natural language commands.14MIT
- AlicenseAqualityCmaintenanceEnables AI agents to generate real Office documents (.pptx, .docx, .xlsx) and source code from natural language via MCP protocol.4MIT
- AlicenseNot gradedqualityCmaintenanceEnables AI assistants to create, read, and manipulate Microsoft Word documents with rich editing capabilities.MIT
Related MCP Connectors
AI document editing for agents: draft, edit, export .docx/PDF. 37 MCP tools; agent self-signup.
Persistent docs and memory for AI agents — read, write, organize & search a shared workspace.
OCR, transcription, file extraction, and image generation for AI agents via MCP.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/Rockstar-1281/tawaz-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server