Provides tools for managing Linear issues, comments, teams, projects, labels, workflow states, milestones, and attachments through Linear's GraphQL API.
Provides browser automation capabilities including navigation, form filling, clicking, screenshot capture, content extraction, network monitoring, and performance tracing using Puppeteer.
Enables management of Supabase projects, organizations, database operations (SQL execution, migrations), edge functions, branching, storage configuration, and monitoring through the Supabase Management API.
Enables access to Context7 library documentation with library ID resolution and retrieval of up-to-date, version-specific documentation with topic filtering.
MCP Lite Wrappers
Lightweight MCP wrapper plugins that consolidate multiple tools into single-action tools, reducing Claude Code context usage by ~80%.
Problem
MCP servers expose many individual tools, each consuming context tokens. For example, supabase-mcp exposes 20+ tools, using ~11k tokens just for tool definitions.
Solution
Wrap multiple tools into a single tool with an action parameter. One tool, one description, massive token savings.
Packages
Package | Wraps | Tools → 1 | Est. Savings |
30 → 1 | ~11k tokens | ||
28 → 1 | ~12k tokens | ||
34 → 1 | ~14k tokens | ||
2 → 1 | ~400 tokens |
Installation
supabase-lite-mcp
Add to your Claude Code MCP config (~/.claude/settings.json or project .mcp.json):
linear-lite-mcp
Add to your Claude Code MCP config:
Get your Linear API key from Linear Settings > API.
chrome-lite-mcp
Add to your Claude Code MCP config:
Environment variables (optional):
CHROME_PATH- Path to Chrome executable (auto-detected if not set)CHROME_HEADLESS- Set to "false" for visible browser (default: headless)
context7-lite-mcp
Add to your Claude Code MCP config:
Environment variables (optional):
CONTEXT7_API_KEY- Context7 API key from context7.com/dashboard (optional - lower rate limits without it)
Usage
Supabase
All actions go through a single supabase tool:
Available Actions
Projects & Organizations
list_projects,get_project,create_project,pause_project,restore_projectlist_organizations,get_organization
Cost Management
get_cost,confirm_cost
Database
execute_sql,list_tables,list_extensionslist_migrations,apply_migration
Monitoring
get_logs,get_advisors
Project Info
get_project_url,get_publishable_keys,generate_typescript_types
Edge Functions
list_edge_functions,get_edge_function,deploy_edge_function
Branching
create_branch,list_branches,delete_branchmerge_branch,reset_branch,rebase_branch
Storage
list_storage_buckets,get_storage_config,update_storage_config
Documentation
search_docs
Linear
All actions go through a single linear tool:
Linear Available Actions
Issues
create_issue,update_issue,get_issue,search_issuesget_user_issues,get_team_issues,get_project_issues
Comments
add_comment,get_comments
Teams & Projects
get_teams,get_team,get_projects,get_project
Labels
get_labels,create_label,update_label
Users
get_viewer,get_users,get_user_teams,get_user_projects
Issue Relations
link_issues,get_issue_relations
Attachments
add_attachment,get_attachments
Workflow & Milestones
get_workflow_states,get_milestones,create_milestone,update_milestone
Chrome
All actions go through a single chrome tool:
Chrome Available Actions
Input Automation
click,drag,fill,fill_form,handle_dialog,hover,press_key,upload_file,select
Navigation
navigate_page(with auto-capture support),new_page,list_pages,select_page,close_page,wait_for
Emulation
emulate,resize_page
Performance
performance_start_trace,performance_stop_trace,performance_analyze_insight
Network
get_network_request,list_network_requests
Extraction & Debugging
extract(text/html/markdown),get_attr,evaluate_script,take_screenshot,take_snapshot,list_console_messages,get_console_message
Browser Control
show_browser,hide_browser,browser_mode
Profile Management
set_profile,get_profile
Context7
All actions go through a single context7 tool:
Context7 Available Actions
Library Resolution
resolve_library_id- Search for libraries and get Context7-compatible IDs
Documentation
get_library_docs- Fetch up-to-date, version-specific documentation with optional topic filtering
Architecture
Follows the superpowers-chrome pattern:
Single tool with
actionenum parameterSwitch/dispatch based on action
Proxy calls to underlying API (Supabase Management API, Linear GraphQL API)
Development
Tech Stack
TypeScript
Zod for validation
MCP SDK (@modelcontextprotocol/sdk)
puppeteer-core (for chrome-lite)
License
MIT
References
superpowers-chrome - Pattern reference
supabase-mcp - Supabase MCP being wrapped
Linear GraphQL API - Linear API documentation
Chrome DevTools MCP - Chrome DevTools reference
Puppeteer - Browser automation library
MCP SDK - Model Context Protocol SDK