Get the FREE Ultimate OpenClaw Setup Guide →

mcp s

MCP server from BenHowl/mcp-servers

Installation
Run this command in your terminal to add the MCP server to Claude Code.
Run in terminal:
Command
claude mcp add --transport stdio benhowl-mcp-servers node stripe-mcp/index.js \
  --env STRIPE_SECRET_KEY="Your Stripe secret key" \
  --env STRIPE_PUBLISHABLE_KEY="Optional Stripe publishable key"

How to use

This MCP server bundle exposes three specialized MCP servers that integrate with your Vibin Coders setup: Supabase for database operations, Stripe for payments, and Playwright for automated browser actions. Each server exposes a set of context-aware actions (e.g., supabase_query, stripe_create_product, playwright_navigate) that you can invoke from your prompts to perform structured tasks like querying the database, managing products and customers, or automating web interactions. To use them, ensure the servers are running with the appropriate environment variables, then call the actions by name in your prompts, providing the required parameters. For example, you can use the Supabase MCP to create a subscriptions table, the Stripe MCP to create pricing plans, and the Playwright MCP to verify that a pricing page loads correctly, chaining these steps to automate end-to-end workflows.

How to install

Prerequisites:

  • Node.js and npm installed on your system
  • Access to the mcp-servers directory from the repository

Step-by-step:

  1. Install dependencies for the MCP servers: npm install --prefix ./mcp-servers

  2. Configure environment variables for each server: cd mcp-servers cp .env.example .env

    Edit .env with your actual values for SUPABASE_URL, SUPABASE_SERVICE_ROLE_KEY, STRIPE_SECRET_KEY, etc.

  3. Start the MCP servers (example): node supabase-mcp/index.js & node stripe-mcp/index.js & node playwright-mcp/index.js &

  4. Optional: Update Claude Code configuration to point to the running MCP servers and ensure ~/.claude.json contains the appropriate env blocks as shown in the README.

  5. If you encounter issues, install Playwright browsers as needed: npx playwright install

Additional notes

Tips and common issues:

  • Ensure environment variables are correctly set in .env and reflected in ~/.claude.json for Claude Code integration.
  • If you modify MCP server code, re-install dependencies if necessary and restart the servers.
  • For Playwright, make sure browsers are installed (npx playwright install) to avoid browser-related errors.
  • Use the provided test commands to verify each server individually before integrating into prompts.
  • When adding or removing servers in Claude Code, keep the environment variable naming consistent with the mcpServers keys (supabase, stripe, playwright).

Related MCP Servers

Sponsor this space

Reach thousands of developers