We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/vltansky/cursor-conversations-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
general.mdc•875 B
---
description:
globs:
alwaysApply: true
---
# General Project Guidelines
## **Package Management**
- Use yarn for package management
- Prefer `yarn add` over `npm install`
- Use `yarn.lock` for dependency locking
## **Code Organization**
- Follow the established directory structure in [src/](mdc:src)
- Group related functionality in modules
- Use barrel exports for clean public APIs
## **Development Workflow**
- Build with `yarn build` before testing
- Use TypeScript for all new code
- Follow patterns established in existing codebase
## **File Extensions**
- Use `.js` extensions for local imports (required for ESM)
- TypeScript files should be `.ts`
- Use `.mdc` for Cursor rules
## **Cross-Rule References**
- MCP server patterns: [mcp.mdc](mdc:.cursor/rules/mcp.mdc)
- TypeScript patterns: [typescript-patterns.mdc](mdc:.cursor/rules/typescript-patterns.mdc)