subspace-api

subtype-space/subspace-api

3.2

If you are the rightful owner of subspace-api and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.

subspace-api is an express-based RESTful API and Model Context Protocol (MCP) server.

subspace-api

NOTE! This repository, if viewed on GitHub, is a downstream mirror. Our active API service may not reflect changes that are shown here in a timely manner.

subspace-api is an express-based RESTful API and Model Context Protocol (MCP) server.

If you are utilizing this API provided and hosted by us, please be sure to abide by the TOS. Otherwise, you are free to clone and self host provided you abide by the GNU GPLv3 license, and the TOS will not pertain to you!

Getting Started

With Docker (preferrably compose)

Building your own image

docker compose build && docker compose up -d

Pulling from stable releases

docker compose pull && docker compose up -d

Manual build

Single line start, attached

npm run build && npm run start

Setting up your .env

Env varPurpose
PORTDefaults to 9595. The port for the API and MCP server to listen on.
LOG_LEVELDefaults to 'info'. Set the logging level.
ACTIVE_VERSIONDefaults to 'v1', currently not implemented fully.
WMATA_PRIMARY_KEYThe API key to use for obtaining WMATA status.
JWT_SECRET(DEPRECATED) This is the secret key that is used for encrypting and decrypting JWT tokens.
SESSION_SECRETBase64 encoded random string that you can probably generate with openssl rand -base64 64.
TZ(Optional) Lets the container/logger format log messages with the machine's local time zone.