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 SourceDetails(
$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 SourceAppliedStateNode {
uniqueId
name
identifier
description
sourceName
database
schema
filePath
fqn
meta
sourceDescription
tags
loader
catalog {
columns {
comment
description
index
meta
name
tags
type
}
}
freshness {
maxLoadedAt
maxLoadedAtTimeAgoInS
freshnessStatus
}
tests {
columnName
description
lastKnownResult
name
resourceType
uniqueId
}
}
}
}
}
}
}
}