We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/dbt-labs/dbt-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
get_snapshot_details.md•438 B
<instructions>
Fetch detailed metadata for a dbt snapshot.
- Supply at least one of `unique_id` or `name`. Call will fail if both are missing.
- Always prefer providing `unique_id` for exact matches.
</instructions>
<examples>
1. Fetch a snapshot by unique_id:
get_snapshot_details(unique_id="snapshot.analytics.customers")
2. Fetch a snapshot when only the node name is known:
get_snapshot_details(name="customers")
</examples>