CAT
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Cross AI Tools

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic

Welcome Text Generator Mcp

goodfel10w/welcometextgenerator
authSTDIOregistry active
Summary

This server generates professional German welcome texts for new employees by extracting structured data from free-form input and composing modular onboarding messages. It exposes three tools: extract_from_text pulls names, positions, skills, experience, and interests from plain text, generate_modular_welcome_text builds customizable messages from five template modules with multiple variants for intros and closings, and list_extracted_data retrieves stored employee records from local JSON storage. Reach for this when you need consistent, personalized welcome messages at scale and want Claude to handle both the data parsing and template composition instead of manually formatting each introduction. The module system lets you toggle sections like fun facts or career history depending on what information you have available.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

Welcome Text Generator MCP Server

Ein Model Context Protocol (MCP) Server zur automatischen Generierung professioneller Willkommenstexte für neue Mitarbeiter. Extrahiert strukturierte Daten aus Freitext-Informationen und erstellt modulare, anpassbare Onboarding-Texte.

Features

📝 Text-Analyse: Verarbeitet Freitext-Informationen über Mitarbeiter 🎯 Modulares Template-System: 5 flexible Module mit verschiedenen Varianten 💾 Datenspeicherung: Speichert extrahierte Daten zur späteren Verwendung 🔄 Übersichtsverwaltung: Listet alle gespeicherten Mitarbeiterdaten auf

Installation

Voraussetzungen

  • Node.js (v18 oder höher)
  • Claude Desktop App

Schritt 1: Installation via NPM

npm install -g welcome-text-generator-mcp

Oder für lokale Entwicklung:

git clone https://github.com/goodfel10w/WelcomeTextGenerator.git
cd WelcomeTextGenerator
npm install
npm run build

Schritt 2: Claude Desktop Konfiguration

Öffne die Claude Desktop Konfigurationsdatei:

Windows: %APPDATA%\Claude\claude_desktop_config.json macOS: ~/Library/Application Support/Claude/claude_desktop_config.json Linux: ~/.config/Claude/claude_desktop_config.json

Füge den MCP Server hinzu:

{
  "mcpServers": {
    "welcome-text-generator": {
      "command": "node",
      "args": [
        "C:\\Pfad\\zum\\Projekt\\dist\\index.js"
      ],
      "env": {}
    }
  }
}

Bei globaler Installation via NPM:

{
  "mcpServers": {
    "welcome-text-generator": {
      "command": "npx",
      "args": ["welcome-text-generator-mcp"],
      "env": {}
    }
  }
}

Schritt 3: Claude Desktop neu starten

Starte die Claude Desktop App neu, damit der MCP Server geladen wird.

Verfügbare Tools

1. extract_from_text

Extrahiert strukturierte Daten aus Freitext.

Parameter:

  • text (string): Freitext mit Informationen über den Mitarbeiter

Beispiel:

{
  "text": "Max Mustermann - Senior Developer mit 5 Jahren Erfahrung. Skills: JavaScript, TypeScript, React..."
}

2. generate_modular_welcome_text

Generiert einen modularen Willkommenstext nach dem Template-System.

Parameter:

  • data (object): Extrahierte Mitarbeiterdaten

    • name (string, required)
    • position (string, optional)
    • previousCompany (string, optional)
    • skills (array, required)
    • experience (string, optional)
    • achievements (array, required)
    • interests (array, required)
  • moduleOptions (object, optional):

    • includeCompetencies (boolean, default: true): Modul 2 einbinden
    • includeFunFact (boolean, default: false): Modul 3 einbinden
    • includeExperience (boolean, default: true): Modul 4 einbinden
    • introductionVariant (string, default: "variant1"): "variant1", "variant2" oder "variant3"
    • closingVariant (string, default: "variant1"): "variant1", "variant2" oder "variant3"

3. list_extracted_data

Listet alle gespeicherten Mitarbeiterdaten auf.

Keine Parameter erforderlich

Modul-System

Der generierte Text besteht aus 5 Modulen:

Modul 1: Begrüßung & Einleitung (Pflicht)

3 Varianten verfügbar:

  • Variant 1: "Welcome to [NAME]! Mit einem frischen Blick..."
  • Variant 2: "Wir freuen uns riesig, [NAME] bei uns begrüßen zu dürfen!..."
  • Variant 3: "Ein herzliches Willkommen an [NAME]!..."

Modul 2: Kompetenzen & Stärken (Optional)

Beschreibt die Fachkenntnisse und Leidenschaft des Mitarbeiters.

Modul 3: Fun Fact (Optional)

Persönliche, interessante Information über den Mitarbeiter.

Modul 4: Beruflicher Werdegang (Optional)

Informationen zur bisherigen Karriere und Erfolgen.

Modul 5: Abschluss & Willkommensgruß (Pflicht)

3 Varianten verfügbar:

  • Variant 1: "Herzlich willkommen im Team, [NAME]!..."
  • Variant 2: "Wir freuen uns sehr, dich an Bord zu haben, [NAME]!..."
  • Variant 3: "Schön, dass du jetzt Teil unseres Teams bist, [NAME]!..."

Verwendungsbeispiel

Im Claude Chat:

Ich: Hier sind die Informationen über unseren neuen Mitarbeiter:
Max Mustermann - Senior Developer mit 5 Jahren Erfahrung in JavaScript, TypeScript und React.
Hat zuvor bei TechCorp gearbeitet und mehrere erfolgreiche Projekte geleitet.
Begeisterter Marathonläufer.

Claude: Ich extrahiere die Daten aus dem Text...
[verwendet extract_from_text Tool]

Ich: Erstelle einen Willkommenstext mit Variante 2 für die Begrüßung
und füge einen Fun Fact hinzu.

Claude: [verwendet generate_modular_welcome_text mit entsprechenden Optionen]

Ausgabe:
Wir freuen uns riesig, Max Mustermann bei uns begrüßen zu dürfen!
Ab sofort verstärkt er unser Team im Bereich Development als Senior
Developer und bringt dabei wertvolle Erfahrung und neue Impulse mit.

Max bringt nicht nur umfangreiche Kenntnisse in JavaScript und
TypeScript mit, sondern auch jede Menge Energie und Leidenschaft
für moderne Webentwicklung.

Fun Fact über Max: Wusstest du, dass er ein begeisterter
Marathonläufer ist? Vielleicht erleben wir das bald gemeinsam im Team!

Herzlich willkommen im Team, Max Mustermann! Lass uns gemeinsam
großartige Dinge erreichen. Schön, dass du da bist!

Datenspeicherung

Alle extrahierten Daten werden automatisch gespeichert in:

<Projektverzeichnis>/data/extracted_data.json

Jeder Eintrag enthält:

  • id: Eindeutige ID (Timestamp)
  • timestamp: ISO 8601 Zeitstempel
  • source: Quelle der Daten ("Manuelle Texteingabe")
  • data: Die extrahierten Mitarbeiterdaten

Entwicklung

Projekt lokal starten

npm run dev

Build erstellen

npm run build

Tests ausführen

npm test

Technologie-Stack

  • TypeScript: Typsicherer Code
  • MCP SDK: Model Context Protocol Integration
  • Zod: Schema-Validierung

Projektstruktur

welcome-text-generator-mcp/
├── src/
│   ├── index.ts                 # Server-Einstiegspunkt
│   ├── types.ts                 # TypeScript-Typen
│   ├── tools/                   # MCP Tools
│   │   ├── extractFromTextTool.ts
│   │   ├── generateModularTextTool.ts
│   │   └── listDataTool.ts
│   ├── utils/                   # Hilfsfunktionen
│   │   ├── textExtractor.ts
│   │   └── moduleTextGenerator.ts
│   ├── templates/               # Text-Templates
│   │   └── moduleTemplates.ts
│   └── storage/                 # Datenspeicherung
│       └── dataStorage.ts
├── dist/                        # Kompilierte Dateien
├── data/                        # Gespeicherte Daten
├── package.json
├── tsconfig.json
└── README.md

Lizenz

MIT License - siehe LICENSE Datei

Beiträge

Contributions sind willkommen! Bitte erstelle einen Pull Request oder öffne ein Issue.

Support

Bei Fragen oder Problemen:

  • GitHub Issues: https://github.com/goodfel10w/WelcomeTextGenerator/issues
  • MCP Dokumentation: https://modelcontextprotocol.io

Changelog

Version 1.0.0

  • Initial Release
  • Text-Extraktion und Analyse
  • Modulares Template-System mit 5 Modulen
  • Datenspeicherung und -verwaltung
  • 3 Varianten für Einleitung und Abschluss
Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

Configuration

YOUR_API_KEY*secret

Your API key for the service

Registryactive
Packagewelcome-text-generator-mcp
TransportSTDIO
AuthRequired
UpdatedOct 15, 2025
View on GitHub