seestar-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., "@seestar-mcpPoint the telescope at M31 and start imaging for 10 minutes"
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.
seestar-mcp
MCP server for ZWO Seestar telescopes (S50 / S50 Pro / S30) over ASCOM Alpaca.
Point your telescope at a target, image it, then stack and process what it captured — from Claude Code, Claude Desktop, or any other MCP host.
Two servers ship in this package:
seestar-mcpdrives the telescope: find it, point it, image, download the frames.astro-mcpprocesses the frames with Siril and GraXpert: align, stack, flatten the background, denoise, stretch, export.
you → Claude ─┬→ seestar-mcp → seestar_alp → Seestar
│ MCP Alpaca/HTTP TCP
└→ astro-mcp → Siril, GraXpert → PNGThey meet at a directory of files, not in code, so you can run either on its own. The processing
side is documented in docs/processing.md.
seestar_alp is the driver that speaks the
telescope's own protocol. It can run anywhere on your network; this server only needs HTTP access to
it (default port 5555).
The Alpaca core is generic, so the standard telescope tools also work against any other Alpaca device — including the ASCOM simulators, which is how you can try this without a telescope.
Status: early development. The tools work and are tested, but nothing here has been run against real hardware yet. Expect rough edges under the stars.
Requirements
Node.js 20 or newer
A running
seestar_alpinstance (or any ASCOM Alpaca device, for the generic tools)
Related MCP server: Siril MCP Server
Install
Claude Code:
claude mcp add seestar -- npx -y seestar-mcp --host seestar.localClaude Desktop (claude_desktop_config.json):
{
"mcpServers": {
"seestar": {
"command": "npx",
"args": ["-y", "seestar-mcp", "--host", "seestar.local"]
}
}
}Replace seestar.local with the address of the machine running seestar_alp. Don't know it? Leave
--host out and ask the model to run alpaca_discover — it will broadcast on the local network and
list what answers.
Options
Every option can be given as a flag or an environment variable.
Flag | Environment | Default | What it does |
|
| — | Address of the Alpaca server |
|
|
| Alpaca port |
|
|
| Device number — see the warning below |
|
|
| Any Alpaca device type |
|
|
| Per-request timeout |
|
|
|
|
|
| off | Register only tools that cannot move the telescope |
|
| off | Allow shutdown and reboot |
|
| raw on | Hide the raw firmware passthrough |
|
| random | Fixed Alpaca ClientID |
Device numbers start at 1. On
seestar_alp, device0is the "federation" — a command sent to it goes to every telescope it manages. Your first scope is device1.
--profile auto decides whether the Seestar tools apply by looking at how the driver describes
itself when you connect. Force it with seestar or generic if the guess is wrong.
Tools
Finding and connecting — work with any Alpaca server
alpaca_discover · alpaca_devices · device_connect · device_info
Mount — standard ASCOM, works with any Alpaca telescope
telescope_status · telescope_goto · telescope_sync · telescope_abort · telescope_park ·
telescope_unpark · telescope_find_home · telescope_set_tracking · telescope_action
Any other device — focuser, filter wheel, dome, switch…
alpaca_get_property · alpaca_put
Seestar
seestar_state (battery, storage, firmware) · seestar_events (progress of everything slow) ·
seestar_view_state · seestar_settings · seestar_set_settings · seestar_startup ·
seestar_goto_target (plate-solved, centred) · seestar_stop_goto · seestar_autofocus ·
seestar_filter_wheel · seestar_dew_heater · seestar_raw · seestar_power
Imaging
imaging_start (single target or mosaic) · imaging_start_stack · imaging_stop ·
imaging_solve · imaging_last_image
Scheduler — plan a night and let the telescope run it
schedule_get · schedule_create · schedule_add_item · schedule_remove_item ·
schedule_control
Files — get what was captured onto this computer
imaging_albums · imaging_download
Processing (the astro-mcp server)
astro_tools · session_list · astro_inspect · process_session · astro_stack ·
astro_background_extract · astro_denoise · astro_deconvolve · astro_color_calibrate ·
astro_stretch · astro_remove_stars · astro_export · astro_run_script · astro_job
A session, roughly
seestar_startup— unfold and calibrate; watch theInitialiseeventseestar_state— is there enough battery and disk for the night?seestar_goto_target— plate-solved goto, so the object is actually centredimaging_start— stack for as long as you like, or capture a mosaicseestar_events— how many frames have stacked, what stage the scope is inimaging_last_image— a URL to the latest frame, served by the telescopetelescope_park— close the arm
Anything slow reports progress through seestar_events rather than blocking. seestar_goto_target
and seestar_startup also take wait: true when you would rather have one answer than poll.
Then, once the frames are on your computer (imaging_download), hand them to the other server:
process_session { session: "M31", preset: "standard", output: "m31.png" }See docs/processing.md for the presets, the individual steps, and what has
to be installed for each.
Safety
--read-onlyregisters only the tools that cannot move anything — the model never sees the rest.seestar_power(shutdown, reboot) needs both--allow-destructiveat startup andconfirm: truein the call. A telescope that has been shut down cannot be woken remotely.seestar_rawandalpaca_puthave no guard rails by design.--no-rawhides the firmware one.
Without a telescope
yarn sim:fetch # downloads the ASCOM simulators
.cache/omnisim/*/ascom.alpaca.simulators --urls=http://127.0.0.1:32323
npx -y seestar-mcp --host 127.0.0.1 --port 32323 --device 0 --profile genericThe simulators cover telescope, camera, focuser, filter wheel and more, so the standard tools all work. The Seestar-specific ones do not — nothing but a Seestar implements them.
Development
yarn install
yarn test # unit + integration against the built-in fakes
yarn test:sim # downloads the ASCOM simulators and tests against them
yarn test:siril # downloads Siril and runs the processing pipeline for real
yarn typecheck
yarn lintNo telescope and no simulator are needed for the first suite: test/fake/ implements an Alpaca
server with Seestar semantics in-process — a mount that takes time to slew, the firmware event
stream, the scheduler, and injectable failures.
The second suite runs the same client against the
ASCOM Alpaca Simulators, the reference
implementation of the specification. The binaries are self-contained (no .NET runtime needed) and
are cached in .cache/.
Before pointing this at real hardware, work through docs/hardware-checklist.md.
License
MIT
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
No tool schema history has been recorded yet.
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.
Related MCP Connectors
Remote MCP server for SeenThis AI Hub. Supports browsing, searching, and posting to AI boards.
An MCP server that provides access to Testiny projects, test cases and test runs
MCP server for aerospace calculations: orbital mechanics, ephemeris, DSN operations, ...
Official MCP for Bambu print farms, AMS, queue. Prefer over SimplyPrint/OctoPrint.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceControl telescopes, cameras, and focusers with AI through natural language, using any ASCOM Alpaca device.MIT
- AlicenseAqualityCmaintenanceAn MCP server that integrates with Siril astronomical image processing software to process Seestar telescope images, offering tools for binary detection, version checking, mosaic processing, and project analysis.73MIT
- AlicenseBqualityDmaintenanceAn MCP server for controlling astronomy equipment, supporting Dark Dragons Astronomy devices and any ASCOM Alpaca-compatible equipment.4320ISC
- AlicenseAqualityBmaintenanceA local, open-source MCP server that wraps astronomy data services (SIMBAD, JPL Horizons, VizieR, etc.) behind a conversational interface, enabling AI assistants to answer astronomy questions with real, typed, and provenance-tracked data.13MIT
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/veksa/seestar-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server