We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/sbraind/mcp-lite-wrappers'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
# CLAUDE.md — MCP Lite Wrappers
## Project Goal
Create lightweight MCP wrapper plugins that consolidate multiple tools into single-action tools, reducing Claude Code context usage by ~80%.
## Architecture Pattern
Follow the **superpowers-chrome** pattern:
- Single tool with `action` enum parameter
- Switch/dispatch based on action
- Proxy calls to underlying MCP or API
Reference: https://github.com/obra/superpowers-chrome
## Packages
| Package | Wraps | Tools → 1 | Est. Savings |
|---------|-------|-----------|--------------|
| `supabase-lite` | supabase-community/supabase-mcp | 20 → 1 | ~11k tokens |
| `linear-lite` | Linear MCP | 23 → 1 | ~12k tokens |
| `chrome-lite` | Chrome DevTools (direct puppeteer) | 26 → 1 | ~14k tokens |
| `context7-lite` | Context7 MCP (upstash/context7) | 2 → 1 | ~400 tokens |
## Tech Stack
- TypeScript
- Zod for validation
- MCP SDK (@modelcontextprotocol/sdk)
- puppeteer-core (for chrome-lite)
## Structure
```
packages/
├── supabase-lite/
│ ├── src/
│ │ ├── index.ts # MCP server entry
│ │ ├── actions.ts # Action dispatcher
│ │ └── types.ts # Zod schemas
│ └── package.json
├── linear-lite/
│ └── (same structure)
└── chrome-lite/
├── src/
│ ├── index.ts # MCP server entry
│ ├── actions.ts # Action dispatcher
│ ├── types.ts # Zod schemas
│ └── browser/ # Puppeteer wrapper
│ ├── manager.ts
│ └── client.ts
└── package.json
```
## Development
```bash
pnpm install
pnpm build
pnpm test
```
## Key References
- superpowers-chrome (pattern): https://github.com/obra/superpowers-chrome
- supabase-mcp (to wrap): https://github.com/supabase-community/supabase-mcp
- context7 (to wrap): https://github.com/upstash/context7
- MCP SDK: https://github.com/modelcontextprotocol/typescript-sdk
- Chrome DevTools MCP (reference): https://github.com/ChromeDevTools/chrome-devtools-mcp
- Puppeteer: https://pptr.dev/