npm @newspacemarket/mrd-mcpstreamable-httpupdated 8d ago
Typed, datasheet-sourced specifications for 2,486 flight hardware products across 24 categories โ reaction wheels, star trackers, propulsion, radios, antennas, structures, ground stations and more โ with 19,011 values that each cite the datasheet page they came from.
What can you do with mrd?
MRD โ machine-readable datasheets for spacecraft components
Typed, datasheet-sourced specifications for 2,486 flight hardware products across 24 categories โ reaction wheels, star trackers, propulsion, radios, antennas, structures, ground stations and more โ with 19,011 values that each cite the datasheet page they came from.
Built for software and AI assistants, not only for reading. Ask in plain language, filter by engineering requirements, or download the whole thing.
"Find a reaction wheel over 0.2 Nยทmยทs that runs on a 12 V bus, under 2 kg"
A meets every requirement VRW-B-02 ยท Vectronic ยท 0.2 Nยทmยทs ยท 9โ36 V ยท 1000 g
B fails a named requirement RW-0.06 ยท momentum 0.06 Nยทmยทs โ need โฅ 0.2
C could fit, data not published NanoTorque GSW-600 ยท missing: supply voltage
Three rules make the data usable by a machine:
- Nothing is guessed. A missing property means the vendor does not publish it, and the item is reported as "data missing" rather than silently dropped or filled with a typical value.
- Conditions are kept apart. Idle, steady-state and peak power are separate records with their measurement condition attached โ never averaged into one number.
- Every value is traceable. Source file and page, plus a confidence level:
L0machine-extracted,L1verified by a human against the vendor datasheet.
Use it from an AI assistant (MCP)
Hosted โ no install. Add this as a custom connector in Claude, ChatGPT (developer mode) or any MCP client:
https://newspacemarket.com/mrd-connect/mcp
Local โ for editors that speak stdio (Cursor, Windsurf, VS Code, Claude Desktop). Add to your MCP config:
{
"mcpServers": {
"mrd": {
"command": "npx",
"args": ["-y", "@newspacemarket/mrd-mcp"]
}
}
}
The package is a thin bridge: it speaks stdio to your editor and forwards to the hosted endpoint, so new tools appear without upgrading anything.
Three tools arrive in the assistant:
| tool | what it does |
|---|---|
match_components |
reverse search โ requirements in, candidates grouped A / B / C with per-parameter verdicts |
get_component_specs |
the full typed layer of one category, for your own comparison or trade study |
build_budget |
mass and steady-state power of a stack, with bus-voltage checks and an honest list of what could not be counted |
Where it is listed
- Official MCP Registry โ
io.github.newspacemarket-com/mrd - Smithery โ
info-zrja/newspace-mrd, one-click install into Claude, Cursor, VS Code and other clients - Dataset mirror โ Hugging Face
Use it from code
No authentication for reading. An optional free key raises rate limits five-fold โ request one at /mrd-connect/.
curl "https://newspacemarket.com/mrd-connect/match?category=star-trackers&accuracy_max=10&bus_v=12"
examples/python/select_wheels.pyโ reverse search, printing why each candidate passed or failedexamples/python/budget.pyโ assemble a stack and budget it through the MCP toolsexamples/js/match.mjsโ same search from Node, no dependenciesexamples/curl.mdโ every endpoint as a one-liner
OpenAPI 3.1: openapi.json, served live at
https://newspacemarket.com/mrd-connect/openapi.json. Import it as a ChatGPT
Custom GPT Action, a LangChain / CrewAI / n8n toolkit, or convert it to Gemini
function declarations.
Download the data
data/ holds a dated snapshot, regenerated as the layer grows:
| file | contents |
|---|---|
mrd-full.json |
everything โ products, values, property dictionary |
mrd-values.csv |
one row per value: product, property, number, unit, bound, condition, source, confidence |
mrd-products.csv |
one row per product: name, manufacturer, category, URL |
mrd-properties.csv |
the property dictionary โ what each key means and its canonical unit |
Live data is always newer than the snapshot; use get_component_specs or
/mrd-connect/specs?category=โฆ when freshness matters.
How the data is built
Values are extracted from vendor datasheets (text and, for scanned documents, page images), from vendor product pages, and from product descriptions โ the source of every record says which. Units are converted by code, not by a model: kg to g, dBm to W, psi to bar, tf to mN. A validation pass rejects a figure whose unit does not match the property, and an outlier scan flags values that sit far from the category median for human review.
Coverage is not exhaustive. Where a vendor publishes nothing machine-readable, the product simply is not here โ and where a required field is missing, the API says so by name instead of guessing.
Licence
- Code (the MCP bridge and examples): MIT โ see
LICENSE. - Data in
data/: CC BY 4.0, attribution "NewSpace Market" โ seedata/LICENSE-DATA.
Specifications are extracted from publicly published vendor materials and are provided as-is. Verify against the vendor datasheet before committing to a design.
Links
- Connection hub: https://newspacemarket.com/mrd-connect/
- AI component designer: https://newspacemarket.com/mrd-pilot/
- Catalogue: https://newspacemarket.com
Are you a vendor whose products are listed? Completing the missing fields takes minutes and is free โ write to us from your company domain and we will send a direct link.
Install
Add mrd to your client. Pick the one you use.
{
"servers": {
"mrd-mcp": {
"type": "http",
"url": "https://newspacemarket.com/mrd-connect/mcp"
}
}
}Add to `.vscode/mcp.json` in your workspace.
claude mcp add mrd-mcp -- npx -y @newspacemarket/mrd-mcpcodex mcp add mrd-mcp -- npx -y @newspacemarket/mrd-mcpamp mcp add mrd-mcp -- npx -y @newspacemarket/mrd-mcp{
"mcpServers": {
"mrd-mcp": {
"command": "npx",
"args": [
"-y",
"@newspacemarket/mrd-mcp"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"mrd-mcp": {
"command": "npx",
"args": [
"-y",
"@newspacemarket/mrd-mcp"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"mcpServers": {
"mrd-mcp": {
"command": "npx",
"args": [
"-y",
"@newspacemarket/mrd-mcp"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"mrd-mcp": {
"command": "npx",
"args": [
"-y",
"@newspacemarket/mrd-mcp"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"mrd-mcp": {
"command": "npx",
"args": [
"-y",
"@newspacemarket/mrd-mcp"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"mrd-mcp": {
"type": "local",
"command": "npx",
"args": [
"-y",
"@newspacemarket/mrd-mcp"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"mrd-mcp": {
"command": {
"path": "npx",
"args": [
"-y",
"@newspacemarket/mrd-mcp"
]
}
}
}
}Add to your Zed `settings.json`.
npx -y @newspacemarket/mrd-mcpRun `goose configure`, choose **Add Extension โ Command-line Extension**, and paste this command.
Score
39 / 100
Incomplete
- Documentation25/25
- Maintenance19/25
- Trust6/20
- Capability0/15
- Install experience15/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 0 days ago
- Has a release history
- Repository is not archived
- No licence detected
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 18 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint โ no local install
Version history
| Versions | Published |
|---|---|
| 1.0.1Latest | Aug 31, 2026 |
| 1.0.0 | Aug 30, 2026 |