We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/blockscout/mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
---
description:
globs:
alwaysApply: true
---
### Terminal Path Usage
- Working directory: `/workspaces/bs-mcp-server`. Do not `cd` into `bs-mcp-server`.
- Paths: Use repo-root relative paths. Do not prefix with `bs-mcp-server/`.
- Examples:
- Ruff: `ruff check tests/` (not `ruff check bs-mcp-server/tests/`)
- Pytest: `pytest -m integration -v tests/integration/test_contract_tools_integration.py` (not `pytest bs-mcp-server/tests/...`)
- Absolute paths are acceptable when needed, e.g., `ruff check /workspaces/bs-mcp-server/tests/...`.
- If unsure, run `pwd` once; avoid repetitive `cd`.