Cosmik — Live Space Data
Cosmik MCP Server
Live space data for AI agents — the MCP server behind Cosmik, the free real-time 3D satellite tracker.
Endpoint (remote, streamable HTTP, no auth):
https://gocosmik.com/api/mcpServer card: /.well-known/mcp/server-card.json
Tools
Tool | What it does |
| Upcoming rocket launches worldwide — provider, pad, T-0, mission, webcast |
| Next visible ISS passes for a city (550+ known) or any lat/lon — live SGP4 propagation |
| Latest launch news articles (7 languages) |
Related MCP server: dynamicfeed-mcp
Use it from Claude
{
"mcpServers": {
"cosmik": {
"type": "http",
"url": "https://gocosmik.com/api/mcp"
}
}
}Or in Claude Code: claude mcp add --transport http cosmik https://gocosmik.com/api/mcp
Ask things like "When can I see the ISS from Paris tonight?" or "What's the next SpaceX launch?" — answers come from live orbital data, not training data.
About
Cosmik tracks the ISS, Starlink and 20,000+ satellites in real-time 3D in any browser — free, no login. This server exposes the same live data (CelesTrak orbital elements, Launch Library 2) to AI agents. No API key, fair use; data refreshes continuously.
Available Tools
3 toolsget_iss_passesISS pass times for a cityARead-onlyIdempotentInspect
When the International Space Station will pass over a city in the next 3 days: next pass start time (UTC and local), maximum elevation, duration, and whether it falls in a good viewing window. 550+ major world cities supported (city directory: gocosmik.com/iss-over).
| Name | Required | Description | Default |
|---|---|---|---|
| city | Yes | City name, e.g. 'Paris', 'New York', 'São Paulo' — matched against 550+ major cities |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, openWorldHint=true, idempotentHint=true, destructiveHint=false. The description adds specific behavioral details about the data returned (times, elevation, duration) and scope (next 3 days, city directory). No contradiction.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences, front-loaded with the core purpose, followed by specific details. Every sentence adds value and there is no waste.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the single parameter, absence of output schema, and annotations covering safety, the description fully explains what the tool returns and its constraints (next 3 days, supported cities). No gaps.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The single parameter 'city' has 100% schema description coverage. The tool description does not add new semantic meaning beyond what the schema already provides (examples, 550+ cities), so baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: showing when the ISS will pass over a city in the next 3 days, including start time, elevation, duration, and viewing window. It distinguishes itself from sibling tools (launch news, next launches) by focusing on pass times.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies when to use (for ISS pass times for a city) and provides context (next 3 days, 550+ cities). It does not explicitly state when not to use, but sibling tools cover launches and news, making the usage clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_launch_newsLaunch news & recapsARead-onlyIdempotentInspect
Latest rocket-launch news articles (previews and post-launch recaps) from Cosmik, optionally filtered by a search term (mission, rocket, or provider name).
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of articles to return (1-10, default 5) | |
| query | No | Search term matched against article titles, e.g. 'Starship', 'Crew', 'Ariane' |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already cover read-only, open-world, idempotent, non-destructive behavior. The description adds context about the type of content (previews and recaps) but does not introduce new behavioral traits. No contradictions with annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single 14-word sentence that efficiently conveys the tool's purpose, source, and optional filter. No redundant information; every word earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity, no required parameters, and comprehensive annotations, the description is largely complete. It informs about the source and content type, but lacks details about the return structure (e.g., fields in each article). However, this is not critical for a basic news retrieval tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100% with detailed descriptions for both 'limit' and 'query'. The description reinforces the query parameter by specifying it filters by 'mission, rocket, or provider name', adding value beyond the schema that only mentions matching article titles. This extra context improves parameter understanding.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool retrieves 'Latest rocket-launch news articles (previews and post-launch recaps) from Cosmik' with optional search filter. It is specific about the resource (news articles) and distinguishes from siblings like get_next_launches and get_iss_passes, which provide different launch data.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description does not explicitly state when to use this tool versus siblings. While the names and content imply that this is for news articles and get_next_launches for schedules, there is no explicit guidance on alternatives or exclusions. Usage is partially implied but not fully articulated.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_next_launchesUpcoming rocket launchesARead-onlyIdempotentInspect
Live schedule of upcoming orbital rocket launches (SpaceX, NASA, Rocket Lab, ULA, Arianespace, China…) with liftoff times (UTC), pads, status and a live-tracking link. Optionally filter by provider/rocket name.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of launches to return (1-20, default 5) | |
| provider | No | Case-insensitive filter matched against provider and rocket name, e.g. 'SpaceX', 'NASA', 'Rocket Lab' |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, idempotentHint, destructiveHint, and openWorldHint, so the description does not need to restate safety. It adds value by specifying the response includes 'liftoff times (UTC), pads, status and a live-tracking link', which are behavioral details beyond annotations. No contradiction.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, well-structured sentence that front-loads the essential purpose and includes key details. No extraneous words; each part adds value.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple list tool with no output schema and rich annotations, the description adequately covers what the tool returns and the optional filtering. It is complete enough for an agent to select and invoke the tool correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents both parameters (limit and provider). The description mentions 'optionally filter by provider/rocket name' but does not add new semantic information beyond what the schema already provides. Baseline score of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states it provides a 'Live schedule of upcoming orbital rocket launches' with specific detail fields (times, pads, status, link). It distinguishes itself from sibling tools like get_iss_passes (ISS passes) and get_launch_news (launch news).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies use when a user wants upcoming launch schedules and optionally filter by provider or rocket name. It does not explicitly state when not to use or provide alternatives, but the sibling differentiation and optional filter give sufficient context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
3 tool updates
v0.1.0- First observed
get_iss_passes - First observed
get_launch_news - First observed
get_next_launches
TDQS
Each tool targets a distinct aspect of space data: launches schedule, ISS passes, and launch news. No ambiguity between them.
All tool names follow a consistent verb_get_noun pattern (get_next_launches, get_iss_passes, get_launch_news).
3 tools is well-scoped for a focused live space data server, covering the most relevant live data points without excess.
Covers core live space data (launches, ISS passes, news). Minor gap: no real-time ISS position or satellite tracking, but the set is self-contained for its stated purpose.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Rocket launch schedule: SpaceX, Falcon, Electron. $0.01/query, free testnet funds.
Free cross-lingual news briefings for AI agents across 89 languages. Read-only, hosted.
Launch Library 2 MCP — global rocket launch data
Spacenews MCP — wraps the Spaceflight News API v4 (free, no auth)
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceProvides astronomical data including ISS tracking, moon phases, NASA APOD, near-Earth objects, exoplanets, space weather, and upcoming celestial events without requiring an API key.MIT

dynamicfeed-mcpofficial
AlicenseNot gradedqualityCmaintenance62 live, cryptographically signed data tools for AI agents and robots: weather, natural hazards, flights, shipping, space, CVEs, sanctions, software versions, sea ice and more. Every datapoint carries source, licence, timestamp and an Ed25519 signature.15MIT- AlicenseNot gradedqualityDmaintenanceProvides real-time space data including ISS and Tiangong tracking, crew in space, rocket launches, space news, Mars missions, a star catalog, near-Earth asteroids, and satellites. All 18 tools are read-only.MIT
- AlicenseNot gradedqualityBmaintenanceAggregated public space data — satellite orbits, catalogs and launches — as a single AI-friendly CLI.1MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/crashedfox/cosmik-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server