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
Update docs for streamable-HTTP as default transport
Revised documentation to prioritize streamable-HTTP over legacy SSE, updated examples, renamed `Server.Sse` to `Server.Http`, and clarified backward compatibility. Added explicit notes and sections for legacy SSE usage while ensuring consistency across files.
Copy file name to clipboardExpand all lines: README.md
+27-18Lines changed: 27 additions & 18 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,17 +3,21 @@
3
3
## Use it now
4
4
> Hosted in production (no setup needed): https://mcp.io-aerospace.org/
5
5
>
6
-
> SSE endpoint: https://mcp.io-aerospace.org/sse
6
+
> **Transport Protocols:**
7
+
> -**Streamable-HTTP** (recommended): https://mcp.io-aerospace.org/ - Modern MCP transport protocol
8
+
> -**SSE** (legacy): https://mcp.io-aerospace.org/sse - For backward compatibility with older MCP clients only
7
9
>
8
-
> 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.
10
+
> Note: Use the base URL with modern MCP clients - they will automatically use the streamable-HTTP transport. Only use the`/sse` endpoint if you have an older client that specifically requires SSE protocol.
9
11
10
12
A Model Context Protocol (MCP) server for aerospace and astrodynamics calculations, providing tools for celestial body ephemeris, orbital mechanics, and space mission analysis.
11
13
12
14
## Overview
13
15
14
16
This MCP server provides two transport options:
15
-
-**STDIO Transport**: Standard input/output communication (recommended for MCP clients)
16
-
-**SSE Transport**: HTTP Server-Sent Events for web-based integrations
17
+
-**STDIO Transport**: Standard input/output communication (recommended for local MCP clients)
18
+
-**HTTP Transport**: Supports both modern streamable-HTTP and legacy SSE protocols for web-based integrations
19
+
-**Streamable-HTTP** (default, recommended): Modern MCP protocol at the base URL
20
+
-**SSE** (legacy): Available at `/sse` endpoint for backward compatibility only
17
21
18
22
The server includes comprehensive tools for:
19
23
- Celestial body ephemeris and state vector calculations
@@ -32,11 +36,14 @@ This server is powered by the IO Aerospace Astrodynamics framework, which provid
32
36
## Use the hosted server (recommended)
33
37
34
38
You can start integrating immediately against the production instance:
35
-
- Base URL: https://mcp.io-aerospace.org/
36
-
- SSE stream: https://mcp.io-aerospace.org/sse
39
+
-**Base URL (streamable-HTTP)**: https://mcp.io-aerospace.org/ - Use this with modern MCP clients
40
+
-**SSE endpoint (legacy)**: https://mcp.io-aerospace.org/sse - Only for older clients requiring SSE protocol
37
41
38
-
Example (browser/Node):
42
+
**Important**: Modern MCP clients (2024+) should use the base URL with streamable-HTTP transport. The SSE endpoint is maintained only for backward compatibility with older implementations.
43
+
44
+
Example (legacy SSE - browser/Node):
39
45
```javascript
46
+
// Only use this if you have an old client that requires SSE
Copy file name to clipboardExpand all lines: docs/HowTo-Wix.md
+13-8Lines changed: 13 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,9 +3,10 @@ Title: How to Use the IO Aerospace MCP Server
3
3
Summary: Quick steps to use the hosted server, connect MCP clients, or self-host with Docker/.NET. Includes SPICE kernels info, tool calls, and troubleshooting.
0 commit comments