Skip to content

MCP Integrations

Quick Start: Sequant works fully without any MCP servers, but optional integrations enhance browser testing, library documentation lookup, and complex reasoning capabilities.

MCP (Model Context Protocol) servers extend Claude’s capabilities with specialized tools. Sequant supports three optional MCP integrations that enhance specific workflows.

MCP ServerSkills EnhancedPurpose
Chrome DevTools/test, /testgen, /loopBrowser automation for UI testing
Context7/exec, /fullsolveExternal library documentation lookup
Sequential Thinking/fullsolveComplex multi-step reasoning

Run the doctor command to see which MCPs are configured:

Terminal window
npx sequant doctor

Example output:

✓ MCP Servers: Some MCPs configured: sequential-thinking
⚠ MCP: chrome-devtools: Not configured (optional, enhances /test, /testgen, /loop)
⚠ MCP: context7: Not configured (optional, enhances /exec, /fullsolve)

Enables automated browser testing with snapshots, screenshots, and interaction recording.

  1. Follow the setup guide
  2. Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json on macOS)
  3. Restart Claude Desktop

Without this MCP: The /test skill falls back to generating manual test checklists instead of automated browser tests.

Provides up-to-date library documentation during implementation.

Terminal window
npx -y @anthropic/mcp-cli add upstash/context7

Without this MCP: The /exec skill uses codebase search and general knowledge instead of fetching current library docs.

Enables extended reasoning for complex multi-step problems.

  1. Follow the setup guide
  2. Add to your Claude Desktop config
  3. Restart Claude Desktop

Without this MCP: The /fullsolve skill uses standard reasoning without extended thinking chains.

Sequant is designed to work without any MCPs. Here’s what changes:

ScenarioWith MCPWithout MCP
/test commandAutomated browser snapshots and interactionsManual test checklist generated
/exec library lookupFetches current docs from Context7Uses codebase patterns and general knowledge
/fullsolve reasoningExtended thinking for complex problemsStandard reasoning approach

Symptoms: You installed an MCP but sequant doctor still shows it as not configured.

Solution:

  1. Verify the MCP is in your Claude Desktop config file
  2. Check the server name matches expected patterns (e.g., contains “chrome-devtools”, “context7”, or “sequential-thinking”)
  3. Restart Claude Desktop after config changes

Symptoms: Error messages about missing MCP tools when running skills.

Solution:

  1. Run sequant doctor to check MCP status
  2. If MCP is optional for your use case, the skill should fall back gracefully
  3. If you need MCP functionality, install following the guides above
PlatformConfig Path
macOS~/Library/Application Support/Claude/claude_desktop_config.json
Windows%APPDATA%\Claude\claude_desktop_config.json
Linux~/.config/claude/claude_desktop_config.json

Generated for Issue #15 on 2025-01-10