Skip to main content
Glama

Tawaz DocStudio

究極のリサーチ&ドキュメントエンジン

ドキュメント、図、チャート、引用の作成方法を変革します — すべて1つのMCPサーバーから。

MCP Node.js Python License


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

~/.config/opencode/opencode.json

Claude Code

~/.claude/settings.json またはプロジェクトの .mcp.json

Codex CLI

~/.codex/config.toml

Cursor

~/.cursor/mcp.json

Windsurf

~/.windsurf/mcp.json

Zed

~/.zed/settings.json

Cline

~/.cline/mcp.json

カスタムアプリ

任意の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 を、クローンしたリポジトリの実際のパスに置き換えてください。


利用可能なツール

ドキュメントツール

ツール

機能

create_docx

見出し、表、箇条書きを含むWordドキュメントを作成

edit_docx

既存のDOCXにコンテンツを追加、先頭挿入、または置換

create_pptx

PowerPointプレゼンテーションを構築

edit_pptx

既存のPPTXに新しいスライドを追加

create_xlsx

Excelスプレッドシートを生成

edit_xlsx

行の追加、セルの更新、シートの管理

ビジュアルインテリジェンス

ツール

機能

create_diagram

フローチャート、組織図、マインドマップを生成(Graphviz)

create_chart

棒、折れ線、散布、円、ヒートマップチャートを作成(Matplotlib)

引用管理

ツール

機能

parse_references

BibTeX、RIS、またはJSON引用ファイルを解析

generate_bibliography

APA、MLA、Chicago、IEEE参考文献リストを生成

format_citation

個別の文中引用をフォーマット

プロジェクトユーティリティ

ツール

機能

create_project_structure

リサーチプロジェクトのフォルダ構成を雛形作成

search_in_folder

フォルダ内の全ドキュメントを横断検索

get_file_info

ファイルのメタデータを取得


使用例

フローチャートを作成

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 が制作

役に立ったと思ったら ⭐ を付けてください!

Install Server
F
license - not found
A
quality
C
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

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

View all related MCP servers

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.

View all MCP Connectors

Latest Blog Posts

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