Skip to main content
Glama

Tawaz DocStudio

终极研究与文档引擎

改变您创建文档、图表、图示和引用的方式——全部来自一个 MCP 服务器。

MCP Node.js Python License


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 使用模型上下文协议(MCP)——一种由所有主流 AI 编码工具支持的开源标准。适用于:

客户端

配置位置

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

热力图

分组


贡献

欢迎贡献!Fork 仓库,创建功能分支,然后提交 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