
MCP Pool
β 1from vineethkrishnan
A curated collection of 11 MCP servers for popular SaaS APIs β Stripe, Sentry, Notion, Linear, Datadog, Vercel, PagerDuty, HubSpot, Intercom, Shopify, and Google Workspace.
MCP Pool
Documentation | npm | GitHub
A curated collection of Model Context Protocol (MCP) servers that give AI assistants direct access to popular SaaS APIs β no dashboard switching required.
MCP Pool bridges the gap between AI chat interfaces and the business tools teams rely on daily. Ask questions in natural language, get real answers backed by live data.
Packages
| Package | Description | Version |
|---|---|---|
| @vineethnkrishnan/stripe-mcp | Stripe β payments, customers, subscriptions, invoices | |
| @vineethnkrishnan/sentry-mcp | Sentry β issues, events, stack traces. Self-hosted support. | |
| @vineethnkrishnan/notion-mcp | Notion β pages, databases, search, content | |
| @vineethnkrishnan/linear-mcp | Linear β issues, projects, teams (GraphQL) | |
| @vineethnkrishnan/datadog-mcp | Datadog β monitors, metrics, events. Multi-site support. | |
| @vineethnkrishnan/vercel-mcp | Vercel β deployments, projects, build logs | |
| @vineethnkrishnan/pagerduty-mcp | PagerDuty β incidents, on-call, services. EU support. | |
| @vineethnkrishnan/hubspot-mcp | HubSpot β contacts, deals, companies | |
| @vineethnkrishnan/intercom-mcp | Intercom β conversations, contacts, support | |
| @vineethnkrishnan/shopify-mcp | Shopify β orders, products, customers | |
| @vineethnkrishnan/google-workspace-mcp | Google Workspace β Gmail, Calendar, Drive, Sheets |
Development
# Clone and install
git clone https://github.com/vineethkrishnan/mcp-pool.git
cd mcp-pool
npm install| Command | Description |
|---|---|
npm run build | Build all packages |
npm test | Run tests across all packages |
npm run lint:check | Lint with ESLint |
npm run format:check | Check formatting with Prettier |
npm run docs:start | Start docs dev server |
Project Structure
mcp-pool/
βββ packages/
β βββ oauth-core/ # Shared OAuth 2.0 infrastructure
β β βββ src/
β β βββ strategies/ # OAuth & static token strategies
β β βββ cli/ # Auth login/logout CLI helpers
β βββ <server>/ # MCP server (Γ11)
β βββ src/
β βββ index.ts # MCP server entry point
β βββ services/ # API SDK wrapper
β βββ tools/ # MCP tool definitions
β βββ common/ # Shared types & utilities
βββ docs/ # Docusaurus documentation site
βββ .github/workflows/ # CI, quality, security, release
βββ package.json # Monorepo root (npm workspaces)CI/CD
| Workflow | Trigger | What it does |
|---|---|---|
| CI | Push / PR to main | Lint, test (Node 20 + 22), build |
| Quality | Push / PR to main | Dead code detection (knip), code duplication (jscpd) |
| Security | Push / PR / weekly | CodeQL analysis, dependency review, Trivy scan |
| Commit Lint | PR | Validates PR title follows Conventional Commits |
| Release | Push to main | release-please versioning, npm publish, docs deploy |
Adding a New MCP Server
- Create
packages/<name>/following the structure inpackages/stripe/ - Implement a service layer (API wrapper) and tool layer (MCP interface)
- Add tests β aim for full coverage
- Add the package entry to
release-please-config.jsonand.release-please-manifest.json - Add documentation pages in
docs/
See CONTRIBUTING.md for full guidelines.
Commit Convention
All commits follow Conventional Commits:
feat(stripe): add refund support
fix(stripe): handle null customer email
docs: update installation guideEnforced via commitlint + husky pre-commit hooks.
Documentation
Visit the documentation site for detailed guides on each MCP server.
Roadmap
See the roadmap for planned features and upcoming milestones:
- v0.2.0 β Write operations, SSE transport, streaming responses
- v0.3.0 β Webhooks, multi-account, expanded API coverage, new servers
License
MIT β Vineeth Krishnan
# Clone and install
git clone https://github.com/vineethkrishnan/mcp-pool.git
cd mcp-pool
npm installBefore it works, you'll need: STRIPE_SECRET_KEY
Quick Start
Prerequisites
- Node.js >= 20 (see
.nvmrc)
Use with Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"stripe": {
"command": "npx",
"args": ["-y", "@vineethnkrishnan/stripe-mcp"],
"env": {
"STRIPE_SECRET_KEY": "sk_test_..."
}
}
}
}Then ask Claude things like:
- "How many active subscriptions do we have?"
- "Why did the last payment for cus_123 fail?"
- "Show me our current Stripe balance."
No common issues documented yet. If you hit a problem, the repository's GitHub Issues page is the best place to look.