@striderlabs/mcp-spectrum
Automates Spectrum/Charter ISP account management tasks such as viewing account overview, paying bills, checking outages, and scheduling technician visits via browser automation.
README
@striderlabs/mcp-spectrum
MCP (Model Context Protocol) server for Spectrum/Charter ISP account management. Automates common account tasks via browser automation using Playwright and Browserbase.
Features
- Account Overview — View current plan, balance due, and data usage
- Service Details — Get details on internet, TV, phone, and mobile services
- Pay Bill — Initiate one-time bill payments
- Bill History — View past billing history
- Check Outages — Check for service outages by ZIP code or address
- Schedule Technician — Book a technician visit
Requirements
- Node.js 18+
- A Browserbase account with a CDP URL
- Valid Spectrum account credentials
Installation
npm install @striderlabs/mcp-spectrum
Or install from the tarball:
npm install ./striderlabs-mcp-spectrum-1.0.0.tgz
Configuration
Set the required environment variable:
export BROWSERBASE_CDP_URL="wss://connect.browserbase.com?apiKey=YOUR_KEY"
Usage with Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"spectrum": {
"command": "npx",
"args": ["-y", "@striderlabs/mcp-spectrum"],
"env": {
"BROWSERBASE_CDP_URL": "wss://connect.browserbase.com?apiKey=YOUR_KEY"
}
}
}
}
Tools
get_account_overview
Retrieves current plan, balance due, payment due date, and data usage.
Parameters:
username(required) — Spectrum account email/usernamepassword(required) — Spectrum account password
get_service_details
Gets details for active Spectrum services.
Parameters:
username(required)password(required)service_type(optional) — One of:internet,tv,phone,voice,mobile
pay_bill
Loads the payment form pre-filled with the specified amount. Does not auto-submit — user must confirm payment.
Parameters:
username(required)password(required)amount(required) — Payment amount without$(e.g.,"89.99")payment_method(optional) — Payment method label as shown on account
get_bill_history
Retrieves past bills with dates, amounts, and payment status.
Parameters:
username(required)password(required)months(optional) — Months of history to fetch (default: 12, max: 24)
check_outages
Checks for active outages in a given area.
Parameters:
zip_code(optional) — ZIP code to checkaddress(optional) — Service address to checkusername(optional) — For account-specific outage infopassword(optional)
schedule_technician
Opens and pre-fills the technician scheduling form. Does not auto-submit.
Parameters:
username(required)password(required)issue_description(required) — Description of the problempreferred_date(optional) — Date inYYYY-MM-DDformatpreferred_time(optional) — Time window (e.g.,"Morning (8am-12pm)")contact_phone(optional) — Contact phone number
How It Works
This MCP server uses Playwright to automate a real Chromium browser connected via Browserbase's CDP (Chrome DevTools Protocol) URL. Each tool:
- Connects to the remote browser via
chromium.connectOverCDP() - Logs in to spectrum.net with your credentials
- Navigates to the relevant page
- Extracts or populates data
- Returns structured results as JSON
Security Notes
- Credentials are passed per-request and never stored by this server
- Payment and appointment submission require manual user confirmation — the server will not auto-submit financial transactions
- All browser sessions run in Browserbase's isolated cloud environment
Development
git clone <repo>
cd mcp-spectrum
npm install
npm run build
Run in dev mode:
BROWSERBASE_CDP_URL="..." npx ts-node src/index.ts
License
MIT
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.