Spaceship MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| SPACESHIP_API_KEY | Yes | Your Spaceship API key | |
| SPACESHIP_API_SECRET | Yes | Your Spaceship API secret |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| list_dns_recordsA | List all DNS records for a domain |
| create_dns_recordC | Create a new DNS record for a domain |
| update_dns_recordsC | Update DNS records for a domain |
| delete_dns_recordsA | Delete DNS records for a domain. Requires full record data matching the existing record. |
| create_a_recordA | Create an A record (IPv4 address) for a domain |
| create_aaaa_recordA | Create an AAAA record (IPv6 address) for a domain |
| create_cname_recordB | Create a CNAME record (canonical name/alias) for a domain |
| create_mx_recordB | Create an MX record (mail exchange) for a domain |
| create_srv_recordA | Create an SRV record (service locator) for a domain |
| create_txt_recordB | Create a TXT record (text data) for a domain |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 10 tools
create_dns_record is ambiguous with the specific create_*_record tools; agents may not know which to use for a given record type. update_dns_records and delete_dns_records are clearly distinct, but the overlap between generic and specific creation tools creates confusion.
Naming is inconsistent: some tools use singular 'dns_record' (create_dns_record) while others use plural 'dns_records' (list, update, delete). Also, generic and specific creation tools mix verb styles (create_dns_record vs create_a_record) without a clear pattern.
10 tools is within a reasonable range for a DNS management server. However, the generic create_dns_record duplicates the specific create_*_record tools, making the count feel slightly padded. Still, the overall scope is well-covered.
The toolset covers the core DNS lifecycle: list, create, update, delete, plus specific types for common records (A, AAAA, CNAME, MX, SRV, TXT). Minor gaps exist, such as no get-single-record and missing less common record types, but these are workable.