We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/somacaru/MCP_setup'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
coding-standards.mdc•471 B
---
globs: **/*.py
alwaysApply: false
---
# Python Coding Standards
- Use 4 spaces for indentation
- Maximum line length of 88 characters
- Follow PEP 8 naming conventions
- Use descriptive variable and function names
- Add docstrings for all functions and classes
- Imports in order: standard library, third-party, local application
- Use type hints for function parameters and return values
These standards ensure readability and consistency throughout our codebase.