Skip to content

Commit b0e0eba

Browse files
Add server.json for MCP server configuration
Introduced a new `server.json` file to define metadata and configuration for the MCP server. Includes schema validation, server identification, repository details, and remote connectivity. Structured to comply with Model Context Protocol (MCP) standards.
1 parent 65b8254 commit b0e0eba

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

server.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-10-17/server.schema.json",
3+
"name": "io.github.IO-Aerospace-software-engineering/mcp-server",
4+
"title": "IO Aerospace MCP Server",
5+
"description": "MCP server for aerospace calculations: orbital mechanics, ephemeris, DSN operations, ...",
6+
"version": "1.0.0",
7+
"repository": {
8+
"url": "https://github.com/IO-Aerospace-software-engineering/mcp-server",
9+
"source": "github"
10+
},
11+
"remotes": [
12+
{
13+
"type": "streamable-http",
14+
"url": "https://mcp.io-aerospace.org"
15+
}
16+
]
17+
}

0 commit comments

Comments
 (0)