shtap serve runs the ShoulderTap engine: the routing and asking loop, the scheduler for escalations and timeouts, the HTTP API, and the web approval UI. It is the one process that owns state (a local SQLite file), and every other command talks to it over HTTP.
Start it
Path to the configuration file.
How experts are reached.
console prints DMs to the terminal and reads replies from stdin. slack sends real Slack DMs and captures replies from the Events API.Host interface to bind the HTTP server to.
server.port in your config (default 8776).
Transports
- console
- slack
The console transport prints the exact DM ShoulderTap would send an expert to the terminal running
shtap serve, and reads the expert’s reply from stdin. It needs no Slack app or credentials, which makes it ideal for a first look and for local development. This is the transport the Quickstart uses.What the server exposes
Once running, the server serves:- The HTTP API at
http://localhost:8776/api/v1— used by consumers, the CLI, the SDK, and the MCP server. See the Protocol reference. - The approval UI at
http://localhost:8776/— a single page listing pending proposals to accept or reject. See Approvals.