Tawaz MCP
Tawaz DocStudio
究極のリサーチ&ドキュメントエンジン
ドキュメント、図、チャート、引用の作成方法を変革します — すべて1つのMCPサーバーから。
Tawaz MCP は、単なるドキュメント生成ツールではありません。AIアシスタントをドキュメント作成の強力なエンジンに変える、フル機能のリサーチワークフローエンジンです。
Wordドキュメントの作成。PowerPointデッキの構築。Excelシートの生成。フローチャートの描画。チャートのレンダリング。引用の管理。すべて1回のツール呼び出しで実現します。
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 は、主要なAIコーディングツールすべてがサポートするオープン標準である Model Context Protocol (MCP) を使用しています。対応クライアント:
クライアント | 設定ファイルの場所 |
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 | ✅ | ✅ |
ビジュアルインテリジェンス
図の種類 | チャートの種類 | 引用スタイル |
フローチャート | 棒 | APA |
組織図 | 折れ線 | MLA |
マインドマップ | 散布 | Chicago |
Mermaid | 円 | IEEE |
ヒートマップ | ||
グループ化 |
コントリビューション
コントリビューション歓迎です!リポジトリをフォークし、フィーチャーブランチを作成して、PRを送ってください。
git checkout -b feature/amazing-feature
git commit -m "Add amazing feature"
git push origin feature/amazing-featureライセンス
ISCライセンス — 詳細は LICENSE を参照してください。
❤️を込めて Rockstar-1281 が制作
役に立ったと思ったら ⭐ を付けてください!
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