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
query MacroDetails(
$environmentId: BigInt!
$filter: AppliedResourcesFilter!
$after: String
$first: Int
) {
environment(id: $environmentId) {
applied {
resources(filter: $filter, after: $after, first: $first) {
pageInfo {
hasNextPage
endCursor
}
edges {
node {
... on MacroDefinitionNode {
arguments {
description
name
type
}
description
filePath
macroSql
meta
name
packageName
resourceType
tags
uniqueId
runGeneratedAt
}
}
}
}
}
}
}