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.
Tailor Platform is a headless ERP platform that enables building composable applications:
Getting started with Tailor Platform is simple:
Create an account: The only prerequisite is creating an account at console.tailor.tech
Configure applications via MCP: Once you have an account, configure your applications through the MCP server
Access via GraphQL: Your applications are accessible via GraphQL - you can use:
Monitor via Console: All configuration and application details can be viewed through the web UI at console.tailor.tech
tailorctl
binary for your platformBefore 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
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:
tailorctl
command with the mcp
argumentnpx @tailor-platform/tailor-mcp auth login
or the TAILOR_TOKEN
environment variableTo start an MCP server with HTTP transport:
npx tailorctl mcp --transport=http --listen=0.0.0.0:9000
This command:
ISC
Seamless access to top MCP servers powering the future of AI integration.