MCP Pool
Provides tools for Datadog monitoring, enabling access to monitors, metrics, and events with multi-site support.
Part of Google Workspace integration, providing access to Gmail data along with Calendar, Drive, and Sheets.
Provides tools for Google Workspace, enabling access to Gmail, Calendar, Drive, and Sheets data.
Provides tools for HubSpot CRM, enabling management of contacts, deals, and companies.
Provides tools for Intercom customer support platform, enabling access to conversations and contacts.
Provides tools for Linear project management via GraphQL API, enabling management of issues, projects, and teams.
Provides tools for Notion workspace, enabling access to pages, databases, search, and content.
Provides tools for PagerDuty incident management, including incidents, on-call schedules, and services with EU support.
Provides tools for Sentry error tracking, enabling access to issues, events, and stack traces with self-hosted support.
Provides tools for Shopify e-commerce platform, enabling access to orders, products, and customers.
Provides tools for Stripe payment processing, enabling access to payments, customers, subscriptions, and invoices.
Provides tools for Vercel deployment platform, enabling access to deployments, projects, and build logs.
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 |
Stripe — payments, customers, subscriptions, invoices | ||
Sentry — issues, events, stack traces. Self-hosted support. | ||
Notion — pages, databases, search, content | ||
Linear — issues, projects, teams (GraphQL) | ||
Datadog — monitors, metrics, events. Multi-site support. | ||
Vercel — deployments, projects, build logs | ||
PagerDuty — incidents, on-call, services. EU support. | ||
HubSpot — contacts, deals, companies | ||
Intercom — conversations, contacts, support | ||
Shopify — orders, products, customers | ||
Google Workspace — Gmail, Calendar, Drive, Sheets |
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."
Development
# Clone and install
git clone https://github.com/vineethkrishnan/mcp-pool.git
cd mcp-pool
npm installCommand | Description |
| Build all packages |
| Run tests across all packages |
| Lint with ESLint |
| Check formatting with Prettier |
| 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 | Lint, test (Node 20 + 22), build |
Quality | Push / PR to | 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 | 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.jsonAdd 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
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/vineethkrishnan/mcp-pool'
If you have feedback or need assistance with the MCP directory API, please join our Discord server