@mdayan896/astrix-sdk-mcp
v0.1.0
Published
Minimal MCP server exposing two tools:
Readme
Astrix SDK MCP Server
Minimal MCP server exposing two tools:
astrix_startastrix_finalize
Setup
cd mcp/astrix-sdk-mcp
npm installRun standalone
npm startPublish for broader use
To let anyone use this MCP server, host this repository publicly (or publish this package to npm) and share:
- repo URL
- MCP command path to
server.mjs - required inputs (
teamCode,token,workingDir)
If publishing to npm, change private to false in package.json, then publish and use:
npx <your-package-name>Cursor MCP config example
Add this server in Cursor MCP settings:
{
"mcpServers": {
"astrix-sdk-mcp": {
"command": "node",
"args": ["/Users/mdayan/Desktop/Astrix_2026/mcp/astrix-sdk-mcp/server.mjs"]
}
}
}Tool inputs
astrix_start
{
"teamCode": "MC6PF6",
"workingDir": "/Users/mdayan/Desktop/Astrix_2026"
}astrix_finalize
{
"workingDir": "/Users/mdayan/Desktop/Astrix_2026",
"token": "<ASTRIX_API_TOKEN>",
"title": "Astrix Ops Platform",
"description": "Team operations + scoring + notifications",
"featuresCsv": "teams,payments,broadcast,ai-eval"
}