New:Microsoft Teams Notifications Are Now Available in Socket.Learn more
Get Started

pursers-central

Package Overview
Dependencies
Maintainers
1
Versions
24
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pursers-central

Pursers Central: the multi-board MCP service that owns board state

pipPyPI
Version
0.1.2
Weekly downloads
713
Maintainers
1
Created

Pursers Central

Quickstart

Install the packaged service, create private local credentials, and start it:

python -m pip install pursers-central
pursers-central init ./pursers-local
pursers-central run ./pursers-local

init creates a signing key, JWKS, admin token, board-bound worker token, and profile.env with mode 0600; it prints paths, never credential values. It refuses to replace credential files unless you pass --force. Configure a Streamable HTTP MCP client for http://127.0.0.1:8766/mcp, loading its Bearer token from ./pursers-local/worker.jwt, and call board_onboard with board pursers-local, a new agent name, and role worker. Use admin.jwt for the first connection so that it creates the local board before worker onboarding.

init --force is a hard cutover: every token signed by the previous issuer key stops working immediately. For overlapping keys and uninterrupted clients, follow the issuer-key rotation manual and use pursers-central rotate-key followed by retire-key.

Pursers Central is the loopback MCP service that owns board state. Run it with the console script or the equivalent Python module:

export CENTRAL_JWT_ISSUER='https://issuer.example'
export CENTRAL_JWT_AUDIENCE='http://127.0.0.1:8766/mcp'
export CENTRAL_JWKS_PATH=/PATH/TO/private/credential.jwks.json

pursers-central \
  --host 127.0.0.1 \
  --port 8766 \
  --data-dir /PATH/TO/private/central-data \
  --log-level info

python -m pursers_central accepts the same arguments. The runtime also reads ONBOARD_CENTRAL_HOST, ONBOARD_CENTRAL_PORT, ONBOARD_CENTRAL_DATA_DIR, and ONBOARD_CENTRAL_LOG_LEVEL; command-line arguments override those environment defaults.

At startup the runtime selects JWT authentication, the SQLite store, and invite-only admission. CENTRAL_JWT_ISSUER, CENTRAL_JWT_AUDIENCE, and CENTRAL_JWKS_PATH must describe the credential issuer used by this Central instance. Keep the JWKS and data directory private.

Modern MCP multi-round trips seal requestState with a restart-safe keyring. Central creates request-state.keys in its private data directory with mode 0600, or reads the path in CENTRAL_REQUEST_STATE_KEY_FILE. Each non-empty line is one key of at least 32 bytes: the first key seals and every key unseals. For zero-downtime rotation, fully deploy [OLD, NEW], then [NEW, OLD], then remove OLD one 3600-second request-state TTL after the second phase is fully deployed. Never store the keyring in the repository.

The startup banner prints the MCP bind URL, data directory, and health URL. Check the service without a credential:

curl --fail --silent http://127.0.0.1:8766/healthz

A healthy response has "status":"ok" and "store_backend":"sqlite".

Serving other machines

Central binds loopback by default. To serve agents on other machines, for example over a Tailscale tailnet, supply a TLS certificate and key and allow the exact host name clients will use:

pursers-central \
  --host 0.0.0.0 \
  --port 8766 \
  --data-dir /PATH/TO/private/central-data \
  --tls-certfile /PATH/TO/private/central.crt \
  --tls-keyfile /PATH/TO/private/central.key \
  --allowed-host central.example.ts.net

--allowed-host may be repeated, or set as the comma-separated ONBOARD_CENTRAL_ALLOWED_HOSTS; the TLS paths may also come from ONBOARD_CENTRAL_TLS_CERTFILE and ONBOARD_CENTRAL_TLS_KEYFILE. The certificate and key must be supplied together. Remote clients connect to https://central.example.ts.net:8766/mcp with tokens issued for the configured CENTRAL_JWT_AUDIENCE; clients that do not already trust the certificate's issuer need its CA file.

Tool response views

Central keeps complete tickets, memories, and journal events in its SQLite ledger, but its default model-facing response view is compact. Successful calls to ticket_update, ticket_annotate, ticket_claim, ticket_unclaim, lease_renew, memory_write, and memory_checkpoint return a small mutation receipt instead of repeating the complete affected record and its histories. Use the corresponding read tool, such as ticket_get or memory_read, when the complete current state is needed.

Ticket mutation receipts contain ok, ticket_id, current status and parked state, board generation, a bounded dispatch_state, the last revoked_offer when applicable, and at; annotation receipts also contain annotation_id. Lease renewal receipts contain ok, ticket_id, lease_expires_at, and at. Memory write and checkpoint receipts contain ok, memory_id, scope, generation, and at. Unsuccessful structured results retain their error details instead of being projected as successful receipts. Routing-only recipient_identities fields are never included in MCP responses, including when the full response view is selected. They remain in the durable journal so Central can authorize and filter events before returning them.

A board administrator can restore the legacy response shape for compatibility:

board_response_view_set(
  board_id="BOARD_ID",
  agent_name="ADMIN_AGENT_NAME",
  response_view="full"
)

Set response_view="compact" to restore the default. The setting is durable and reported by board_list, board_snapshot, and board_status.

Structured schema-v2 checkpoint and handoff memories are returned through their named fields (summary, remaining_tasks, next_steps, files, blockers, and warnings as applicable). Their legacy rendered content copy remains in storage but is omitted from memory read projections, so the same information is not sent twice.

Ticket model-usage accounting

ticket_create, ticket_submit, and ticket_review accept a content-free model_usage object with turn counts and provider-reported input/output token totals. Central derives the host, provider, model, role, actor, and timestamp; unknown fields are rejected so prompt and completion text cannot enter the record. Missing host counters remain null rather than being estimated.

ticket_get exposes the durable per-role aggregate at model_usage, including all rejection rounds, total_tokens, and orchestrator_token_share. The total and share remain null until orchestrator, worker, and reviewer token totals are all reported.

FAQs

Related posts