We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/joe-watkins/MCP-Builder'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
README.md•500 B
# code-only-server
Server analyzing code files
## Quick Start
```bash
npm install
npm run dev
```
## Scripts
- `npm run build` - Compile TypeScript
- `npm run dev` - Development mode with hot reload
- `npm start` - Run compiled server
## MCP Configuration
Add to your VS Code/Cursor settings:
```json
{
"mcp.servers": {
"code-only-server": {
"command": "node",
"args": ["path/to/dist/index.js"]
}
}
}
```
## Development
See `src/tools/` for example implementations.