@tailor-platform/tailor-mcp

@tailor-platform/tailor-mcp

The tailorctl command-line utility, with a focus on MCP (Model Context Protocol) server functionality.

tailor-platform

Developer Tools
Visit Server

README

@tailor-platform/tailor-mcp

npm version

The npm package @tailor-platform/tailor-mcp is a tool for automatically installing the tailorctl command-line utility, with a focus on MCP (Model Context Protocol) server functionality.

What is Tailor Platform?

<img src="./assets/tailor-logo.png" alt="Tailor Platform Logo" width="300" style="background: #FFFFFF"/>

Tailor Platform is a headless ERP platform that enables building composable applications:

  • Low-code Development: Build applications without extensive coding, with automatic GraphQL interface generation
  • LLM-friendly: Create data models, business logic, and workflows without writing code, leveraging the power of large language models
  • Enterprise-Ready: Build mission-critical core business applications that scale with your organization
  • Composable Architecture: Develop modular applications that can be assembled and reassembled to meet changing business needs

Getting Started with Tailor Platform

Getting started with Tailor Platform is simple:

  1. Create an account: The only prerequisite is creating an account at console.tailor.tech

  2. Configure applications via MCP: Once you have an account, configure your applications through the MCP server

  3. Access via GraphQL: Your applications are accessible via GraphQL - you can use:

    • The GraphQL Playground for testing queries
    • Any GraphQL client for building applications
  4. Monitor via Console: All configuration and application details can be viewed through the web UI at console.tailor.tech

Features

  • Automatically installs the appropriate tailorctl binary for your platform
  • Supports all major platforms:
    • macOS (x86_64, arm64)
    • Linux (x86_64, arm64)
    • Windows (x86_64, arm64)
  • Provides easy access to MCP server functionality
  • Available MCP tools:
    • create_resource: Creates resources of various types
    • update_resource: Updates resources of various types
    • destroy_resource: Destroys resources of various types
    • fetch_resource_by_trn: Fetches resources by TRN
    • search_resource: Searches resources by workspace ID and resource type
    • query_graphql: GraphQL Query tool
    • graphql_sdl: Fetch SDL for GraphQL

Authentication

Before using the MCP server functionality, you need to authenticate:

npx @tailor-platform/tailor-mcp auth login

By default, credentials are stored in the .tailorctl directory in your HOME directory. If you don't want to use these stored credentials, or when using certain MCP clients like Cline that don't support this authentication method, you'll need to use the TAILOR_TOKEN environment variable.

You can obtain a Personal Access Token (PAT).

npx @tailor-platform/tailor-mcp auth pat create --name mcp --scopes write --scopes read
Successfully created Personal Access Token: tpp_xxxxxxxxxxxxxxxxx

The prefix of tpp_* is your token and use for TAILOR_TOKEN

MCP Server Configuration

Using with LLM Clients (Claude, Cline, etc.)

Configure MCP servers using a JSON configuration format to connect with LLM clients:

{
  "mcpServers": {
    "tailor": {
      "command": "npx",
      "args": [
        "-y",
        "@tailor-platform/tailor-mcp",
        "mcp"
      ],
      "env": {
        "TAILOR_TOKEN": "************" // Your Tailor Platform authentication token
      }
    }
  }
}

This configuration:

  • Defines an MCP server named "tailor"
  • Uses the tailorctl command with the mcp argument
  • Authenticates using either npx @tailor-platform/tailor-mcp auth login or the TAILOR_TOKEN environment variable

Starting via HTTP Transport

To start an MCP server with HTTP transport:

npx tailorctl mcp --transport=http --listen=0.0.0.0:9000

This command:

  • Starts the MCP server using the HTTP protocol
  • Listens on all interfaces (0.0.0.0) on port 9000
  • Makes the server accessible to other machines on your network

License

ISC

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
MCP Package Docs Server

MCP Package Docs Server

Facilitates LLMs to efficiently access and fetch structured documentation for packages in Go, Python, and NPM, enhancing software development with multi-language support and performance optimization.

Featured
Local
TypeScript
Claude Code MCP

Claude Code MCP

An implementation of Claude Code as a Model Context Protocol server that enables using Claude's software engineering capabilities (code generation, editing, reviewing, and file operations) through the standardized MCP interface.

Featured
Local
JavaScript
@kazuph/mcp-taskmanager

@kazuph/mcp-taskmanager

Model Context Protocol server for Task Management. This allows Claude Desktop (or any MCP client) to manage and execute tasks in a queue-based system.

Featured
Local
JavaScript
Linear MCP Server

Linear MCP Server

Enables interaction with Linear's API for managing issues, teams, and projects programmatically through the Model Context Protocol.

Featured
JavaScript
mermaid-mcp-server

mermaid-mcp-server

A Model Context Protocol (MCP) server that converts Mermaid diagrams to PNG images.

Featured
JavaScript
Jira-Context-MCP

Jira-Context-MCP

MCP server to provide Jira Tickets information to AI coding agents like Cursor

Featured
TypeScript
Linear MCP Server

Linear MCP Server

A Model Context Protocol server that integrates with Linear's issue tracking system, allowing LLMs to create, update, search, and comment on Linear issues through natural language interactions.

Featured
JavaScript
Sequential Thinking MCP Server

Sequential Thinking MCP Server

This server facilitates structured problem-solving by breaking down complex issues into sequential steps, supporting revisions, and enabling multiple solution paths through full MCP integration.

Featured
Python