Task Trellis MCP
An MCP (Model Context Protocol) server for Task Trellis, a task management application for AI coding agents.
Hello World Tool
This implementation includes a simple hello_world tool that demonstrates basic MCP functionality.
Available Tools
- hello_world: Returns a greeting message
- Optional parameter:
name(string) - Name to greet (defaults to "World")
- Optional parameter:
Usage
Build the server:
npm run buildStart the server:
npm run serveConfigure in your MCP client:
{ "mcpServers": { "task-trellis": { "type": "stdio", "command": "node", "args": ["dist/server.js"] } } }
Development
npm run build- Build TypeScript to JavaScriptnpm run dev- Watch mode for developmentnpm test- Run Jest testsnpm run test:watch- Run tests in watch modenpm run quality- Run linting, formatting, and type checks