brahe-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@brahe-mcpGet the current Two-Line Element set for the ISS"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
brahe-mcp
This project provides a Model Context Protocol (MCP) server that exposes the astrodynamics capabilities of the Brahe library enabling language models to get smarter about astrodynamics and space situational awareness.

Installation
uv tool install brahe-mcpor
pip install brahe-mcpThen configure your MCP client to use the installed tool:
{
"mcpServers": {
"brahe": {
"command": "brahe-mcp"
}
}
}The MCP configuration location depends on your client. For popular tools you can find it here:
Client | Config Location |
Claude Desktop (macOS) |
|
Claude Desktop (Windows) |
|
Claude Code |
|
Gemini CLI |
|
OpenAI Codex CLI |
|
ChatGPT Desktop does not support local stdio MCP servers — it requires remote HTTPS endpoints
OpenAI Codex CLI
Codex CLI stores MCP configuration in TOML format at ~/.codex/config.toml (or project-scoped .codex/config.toml):
[mcp_servers.brahe]
command = "brahe-mcp"
args = []You can also add it via the CLI:
codex mcp add brahe -- brahe-mcpTo include SpaceTrack credentials:
codex mcp add brahe --env SPACETRACK_USER=your@email.com --env SPACETRACK_PASS=your-password -- brahe-mcpSpaceTrack Configuration
The SpaceTrack tools require a Space-Track.org account. Add your credentials via the env key in the server config:
{
"mcpServers": {
"brahe": {
"command": "brahe-mcp",
"env": {
"SPACETRACK_USER": "your@email.com",
"SPACETRACK_PASS": "your-password"
}
}
}
}
Claude Desktop does not expand shell variables like ${SPACETRACK_USER} — you must put the actual values in the config. Claude Code inherits your shell environment, so you can alternatively set the variables in ~/.zshrc and omit the env block.
Without these variables, the CelesTrak tools will still work normally — only the SpaceTrack tools will return an error prompting you to set the credentials.
Related MCP server: NASA MCP Server
Local Setup
To run the server from a local clone (useful for development or testing before installing):
git clone https://github.com/duncaneddy/brahe-mcp.git
cd brahe-mcp
uv sync --group devThen configure your MCP client to launch the server via uv run. Add the following to your MCP settings file:
{
"mcpServers": {
"brahe": {
"command": "uv",
"args": ["run", "--directory", "/path/to/brahe-mcp", "brahe-mcp"]
}
}
}Replace /path/to/brahe-mcp with the absolute path to your local clone.
Development
uv sync --group dev
uv run pytest tests/This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/duncaneddy/brahe-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server