We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/tecnomanu/pampa'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
code-standards.mdc•686 B
---
projectPath: ./
cursorPath: .
description: General code formatting standards
globs: **/*
alwaysApply: true
---
# Global Code Standards
- Follow consistent code formatting across the entire project.
- Use meaningful variable and function names that explain their purpose.
- Keep functions small and focused on a single responsibility.
- Add meaningful comments for complex logic, but avoid obvious comments.
- Remove debug code, commented-out code and console logs before committing.
- Use proper indentation (spaces or tabs) consistently throughout the project.
- Follow the language/framework's standard style guide.
- Avoid deep nesting of conditionals and loops.