waldzellai

Automcp TS — Development skill for Claude Code

Development community

Easily convert tool, agents and orchestrators from existing agent frameworks to MCP servers.

How to install Automcp TS

This entry records only its repository, not the path inside it, so there is no exact command to give. Open waldzellai/automcp-ts and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

What Automcp TS does

Easily convert tool, agents and orchestrators from existing agent frameworks to MCP servers.

Alternatives in Development

README

AutoMCP-TS

A powerful TypeScript tool for converting various AI agent frameworks into Model Context Protocol (MCP) servers. AutoMCP-TS enables seamless integration with MCP-compatible applications like Claude Desktop, bringing your AI agents into the MCP ecosystem with full TypeScript support.

Overview

AutoMCP-TS automatically converts agents and tools from popular AI frameworks into MCP servers, enabling seamless integration with MCP-compatible applications like Claude Desktop.

Features

  • Multi-Framework Support: Convert agents from various AI frameworks
  • TypeScript-First: Full TypeScript support with proper type definitions
  • Async/Await: Modern async/await patterns throughout
  • Express Integration: Built-in Express.js adapter for web applications
  • CLI Tool: Easy-to-use command-line interface
  • Template System: Configurable templates for different frameworks
  • Zero Dependencies on Python: Pure TypeScript/JavaScript implementation

Supported Frameworks

The TypeScript version includes adapters for:

  • CrewAI: Multi-agent systems (createCrewAIAdapter)
  • LangGraph: Graph-based agents (createLangGraphAdapter)
  • OpenAI Agents: OpenAI SDK agents (createOpenAIAdapter)
  • Pydantic Agents: Schema-validated agents (createPydanticAdapter)
  • LlamaIndex: Retrieval-augmented agents (createLlamaIndexAdapter)
  • MCP Agents: Native MCP agents (createMcpAgentAdapter)
  • Express: Web-based agents (createExpressAdapter)

Installation

Requirements

  • Node.js 18.18 or newer
  • npm 9 or newer

From NPM (when published)

npm install -g automcp-ts

From Source

git clone https://github.com/waldzellai/automcp-ts
cd automcp-ts
npm install
npm run build
npm link

Quick Start

1. Initialize a New MCP Server

# Create a new MCP server for your framework
automcp-ts init --framework langgraph

This creates a `run_mcp.ts` file with a template for your chose