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
integration_tests.mdc•583 B
---
globs: tests/integration/*
alwaysApply: false
---
# Integration Tests Use Real HTTP
## Purpose
Ensure integration tests reflect production by issuing real HTTP requests against configured services.
## Standards/Patterns
- Build clients through the standard config providers so they pull credentials and endpoints from the environment.
- Avoid monkeypatching or stubbing `requests`/network calls inside `tests/integration`; rely on unit tests for mocking.
- If request observations are needed, subclass the client to record metadata while still calling the real implementation.