-
Notifications
You must be signed in to change notification settings - Fork 0
Tools Reference
Michael Carey edited this page Mar 18, 2026
·
1 revision
seq-mcp exposes tools in two layers:
- Starter tools for common read workflows.
- Broad API tools for full route coverage.
Use these first for safe, common tasks.
-
seq_connection_test: validates connectivity and API reachability. -
seq_starter_help: lists compact starter aliases. -
seq_starter_overview: quick health, user, diagnostics, and workspace summary. -
seq_starter_events_search: search events by filter/signal/time range. -
seq_starter_event_by_id: fetch one event by id. -
seq_starter_data_query: run aqquery usingGETorPOST. -
seq_starter_signals_list: list signals. -
seq_starter_signal_by_id: fetch one signal by id. -
seq_starter_dashboards_list: list dashboards. -
seq_starter_alerts_list: list alerts. -
seq_starter_events_stream: bounded live-tail style stream call.
Use these when you need broader Seq API surface access.
-
seq_api_catalog: returns official route/verb/permission catalog. -
seq_api_live_links: discovers livename -> routelinks from your Seq instance. -
seq_api_request: generic verb/path invoker. -
seq_<verb>_<route>: auto-generated tool per official route and verb.
- Use starter tools for dashboards, events, signals, and basic diagnostics.
- Use
seq_api_catalogbefore broad operations to confirm route and required permission. - Use
seq_api_requestor generated tools only when starter tools do not cover your scenario.
-
seq_starter_*tools focus on common read operations. -
seq_api_requestandseq_<verb>_<route>can include non-GETroutes. - Always match API key permissions to the exact route usage.
- Seq HTTP API guide: https://docs.datalust.co/docs/using-the-http-api
- Seq endpoint + permissions table: https://docs.datalust.co/docs/server-http-api
See also: Security and Troubleshooting.