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_test_details.md•426 B
<instructions>
Fetch detailed metadata for a dbt test.
- 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 test by unique_id:
get_test_details(unique_id="test.analytics.is_empty_string")
2. Fetch a test when only the node name is known:
get_test_details(name="is_empty_string")
</examples>