You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+78-8Lines changed: 78 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,11 @@
1
1
# IO Aerospace MCP Server
2
2
3
+
> Use it now — hosted in production (no setup needed): https://mcp.io-aerospace.org/
4
+
>
5
+
> SSE endpoint: https://mcp.io-aerospace.org/sse
6
+
>
7
+
> Note: Most MCP clients that support HTTP/SSE only need the base URL; they will connect to the SSE stream internally (commonly at `/sse`). The explicit `/sse` URL is provided here for manual/web integrations.
8
+
3
9
A Model Context Protocol (MCP) server for aerospace and astrodynamics calculations, providing tools for celestial body ephemeris, orbital mechanics, and space mission analysis.
4
10
5
11
## Overview
@@ -16,6 +22,27 @@ The server includes comprehensive tools for:
16
22
- Mathematical conversions for aerospace calculations
17
23
- Time system conversions and utilities
18
24
25
+
## Use the hosted server (recommended)
26
+
27
+
You can start integrating immediately against the production instance:
The SSE server will be available at `http://localhost:8080`
122
+
The SSE server will be available at `http://localhost:8080`.
96
123
97
124
#### Production
98
125
1. Copy `docker-compose.prod.example.yml` to `docker-compose.prod.yml`
@@ -172,7 +199,9 @@ dotnet run
172
199
173
200
## MCP Client Integration
174
201
175
-
### Claude Desktop Configuration
202
+
Note: Many MCP clients use JSON-based configuration files, but schemas differ per client. The JSON examples below use Claude Desktop’s schema; adapt keys to your client’s format.
203
+
204
+
### Claude Desktop Configuration (STDIO)
176
205
Add to your Claude Desktop configuration:
177
206
178
207
```json
@@ -189,11 +218,52 @@ Add to your Claude Desktop configuration:
189
218
}
190
219
```
191
220
192
-
### HTTP/SSE Integration
193
-
For web-based integrations, connect to the SSE endpoint:
221
+
### Claude Desktop Configuration (HTTP transport to hosted server)
222
+
Use your production server over HTTP/SSE by specifying the base URL only:
0 commit comments