@teachmeto/api-mcp
v1.1.10
Published
Model Context Protocol server for TeachMeTo API
Readme
TeachMeTo MCP Server
A Model Context Protocol (MCP) server that connects to the TeachMeTo REST API.
Requirements
- Bun v1.3.4 or later
Installation
bun installDevelopment
bun run dev # Start with hot reload
bun run typecheck # Type check
bun test # Run testsBuild
bun run buildCompiles TypeScript to JavaScript at build/index.js. Run with Node.js:
Claude Desktop Configuration
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"teachmeto": {
"command": "node",
"args": ["/absolute/path/to/tmt-api-mcp-v2/build/index.js"],
"env": {
"TEACHMETO_API_URL": "https://tmt-api",
"USER_AUTH_TOKEN": "your-jwt-token"
}
}
}
}