Tawaz MCP
Tawaz DocStudio
Die ultimative Recherche- & Dokumentations-Engine
Verändere, wie du Dokumente, Diagramme, Charts und Zitate erstellst – alles von einem einzigen MCP-Server aus.
Tawaz MCP ist nicht nur ein weiterer Dokumentengenerator. Es ist eine vollwertige Recherche-Workflow-Engine, die deinen KI-Assistenten in eine Dokumentations-Kraftmaschine verwandelt.
Erstelle Word-Dokumente. Baue PowerPoint-Präsentationen. Generiere Excel-Tabellen. Zeichne Flussdiagramme. Rendere Diagramme. Verwalte Zitate. Alles mit einem einzigen Tool-Aufruf.
Warum Tawaz DocStudio?
Feature | Beschreibung |
DOCX | Word-Dokumente mit Überschriften, Tabellen und Aufzählungen erstellen & bearbeiten |
PPTX | PowerPoint-Präsentationen mit gestalteten Folien erstellen |
XLSX | Excel-Tabellen mit mehreren Blättern erstellen |
Diagramme | Flussdiagramme, Organigramme, Mindmaps über Graphviz |
Charts | Balken-, Linien-, Streu-, Kreis- und Heatmap-Diagramme über Matplotlib |
Zitate | BibTeX/RIS parsen, APA/MLA/IEEE-Literaturverzeichnisse erstellen |
Suche | Globale Suche über alle Dokumente in einem Projekt |
Struktur | Automatische Erstellung von Forschungsprojekt-Ordnerstrukturen |
Related MCP server: wps-mcp-server
Installation
Voraussetzungen
Einrichtung
# 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 pillowFunktioniert überall
Tawaz MCP verwendet das Model Context Protocol (MCP) – einen offenen Standard, der von allen gängigen KI-Coding-Tools unterstützt wird. Funktioniert mit:
Client | Konfigurationsort |
OpenCode |
|
Claude Code |
|
Codex CLI |
|
Cursor |
|
Windsurf |
|
Zed |
|
Cline |
|
Eigene Apps | Jeder MCP-Client – einfach auf den Server zeigen |
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"]
}
}
}Hinweis: Ersetze
C:\path\to\tawaz-mcpdurch den tatsächlichen Pfad zu deinem geklonten Repository.
Verfügbare Werkzeuge
Dokument-Werkzeuge
Tool | Was es tut |
| Word-Dokumente mit Überschriften, Tabellen und Aufzählungen erstellen |
| Inhalte in bestehenden DOCX-Dateien anhängen, voranstellen oder ersetzen |
| PowerPoint-Präsentationen erstellen |
| Neue Folien zu bestehenden PPTX-Dateien hinzufügen |
| Excel-Tabellen erstellen |
| Zeilen hinzufügen, Zellen aktualisieren, Blätter verwalten |
Visuelle Intelligenz
Tool | Was es tut |
| Flussdiagramme, Organigramme, Mindmaps erstellen (Graphviz) |
| Balken-, Linien-, Streu-, Kreis- und Heatmap-Diagramme erstellen (Matplotlib) |
Zitierverwaltung
Tool | Was es tut |
| BibTeX-, RIS- oder JSON-Zitationsdateien parsen |
| APA-, MLA-, Chicago-, IEEE-Literaturverzeichnisse erstellen |
| Einzelne In-Text-Zitate formatieren |
Projekt-Dienstprogramme
Tool | Was es tut |
| Forschungsprojekt-Ordnerstruktur erstellen |
| Über alle Dokumente in einem Ordner suchen |
| Dateimetadaten abrufen |
Beispiele
Ein Flussdiagramm erstellen
create_diagram({
type: "flowchart",
output: "./assets/diagrams/methodology",
title: "Research Methodology",
data: "Data Collection -> Analysis -> Validation -> Report"
});Ein Diagramm erstellen
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-Referenzen parsen
parse_references({
inputPath: "./references.bib",
format: "bibtex"
});APA-Literaturverzeichnis erstellen
generate_bibliography({
references: JSON.stringify([
{
key: "smith2023",
type: "article",
fields: {
author: "Smith, John",
title: "AI Research",
year: "2023",
journal: "Nature"
}
}
]),
style: "apa"
});Ein Forschungsprojekt erstellen
create_project_structure({
projectName: "my-research",
basePath: "C:\\Users\\user\\Documents"
});Erstellt:
my-research/
├── assets/
│ ├── diagrams/
│ ├── charts/
│ └── images/
├── citations/
├── documents/
└── exports/Einen DOCX-Bericht erstellen
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%"]
]
}
]
});Unterstützte Formate
Format | Erstellen | Bearbeiten |
DOCX | ✅ | ✅ |
PPTX | ✅ | ✅ |
XLSX | ✅ | ✅ |
Visuelle Intelligenz
Diagrammtyp | Chart-Typ | Zitierstil |
Flussdiagramm | Balken | APA |
Organigramm | Linie | MLA |
Mindmap | Streu | Chicago |
Mermaid | Kreis | IEEE |
Heatmap | ||
Gruppiert |
Mitwirken
Beiträge sind willkommen! Forke das Repository, erstelle einen Feature-Branch und reiche einen PR ein.
git checkout -b feature/amazing-feature
git commit -m "Add amazing feature"
git push origin feature/amazing-featureLizenz
ISC-Lizenz – siehe LICENSE für Details.
Mit ❤️ erstellt von Rockstar-1281
Gib dem Repository einen ⭐-Stern, wenn du es nützlich findest!
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