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 使用模型上下文协议(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 | ✅ | ✅ |
可视化智能
图示类型 | 图表类型 | 引用样式 |
流程图 | 柱状图 | 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 用 ❤️ 构建
如果您觉得有用,请给仓库点个 ⭐!
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