Use the hosted server now, or self-host fast with Docker or .NET. Minimal steps below.

Hosted (no setup)

MCP client (Claude Desktop, HTTP)

{
  "mcpServers": {
    "astrodynamics": {
      "transport": { "type": "http", "url": "https://mcp.io-aerospace.org" }
    }
  }
}

MCP client (STDIO)

{
  "mcpServers": {
    "astrodynamics": {
      "command": "/path/to/Server.Stdio",
      "args": ["-k", "/path/to/kernels"]
    }
  }
}
# Run directly
./Server.Stdio -k /path/to/kernels
# Windows
Server.Stdio.exe -k C:\path\to\kernels

Download executables

Self-host quick

Docker (dev):

git clone https://github.com/IO-Aerospace-software-engineering/mcp-server
cd mcp-server
docker-compose up

.NET:

git clone https://github.com/IO-Aerospace-software-engineering/mcp-server
cd mcp-server
dotnet build
# STDIO (MCP clients)
./Server.Stdio -k /path/to/kernels
# or via env
export IO_DATA_DIR="/path/to/kernels" && ./Server.Stdio
# HTTP/SSE (web)
cd Server.Sse && dotnet run  # http://localhost:8080

Kernels (minimal set)

Troubleshooting

Links