AgentStack
MCP verified MIT Self-run

Mcp Pool

mcp-vineethkrishnan-mcp-pool · by vineethkrishnan

A curated collection of Model Context Protocol (MCP) servers for popular SaaS platforms — Stripe, Sentry, Notion, Linear, Datadog, Vercel, PagerDuty, HubSpot, Intercom, Shopify, Google Workspace

No reviews yet
0 installs
1 views
0.0% view→install

Install

$ agentstack add mcp-vineethkrishnan-mcp-pool

✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

Are you the author of Mcp Pool? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

MCP Pool

[](https://github.com/vineethkrishnan/mcp-pool/actions/workflows/ci.yml) [](https://github.com/vineethkrishnan/mcp-pool/actions/workflows/quality.yml) [](https://github.com/vineethkrishnan/mcp-pool/actions/workflows/security.yml) [](LICENSE)

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](packages/stripe) | Stripe — payments, customers, subscriptions, invoices | [](https://www.npmjs.com/package/@vineethnkrishnan/stripe-mcp) | | [@vineethnkrishnan/sentry-mcp](packages/sentry) | Sentry — issues, events, stack traces. Self-hosted support. | [](https://www.npmjs.com/package/@vineethnkrishnan/sentry-mcp) | | [@vineethnkrishnan/notion-mcp](packages/notion) | Notion — pages, databases, search, content | [](https://www.npmjs.com/package/@vineethnkrishnan/notion-mcp) | | [@vineethnkrishnan/linear-mcp](packages/linear) | Linear — issues, projects, teams (GraphQL) | [](https://www.npmjs.com/package/@vineethnkrishnan/linear-mcp) | | [@vineethnkrishnan/datadog-mcp](packages/datadog) | Datadog — monitors, metrics, events. Multi-site support. | [](https://www.npmjs.com/package/@vineethnkrishnan/datadog-mcp) | | [@vineethnkrishnan/vercel-mcp](packages/vercel) | Vercel — deployments, projects, build logs | [](https://www.npmjs.com/package/@vineethnkrishnan/vercel-mcp) | | [@vineethnkrishnan/pagerduty-mcp](packages/pagerduty) | PagerDuty — incidents, on-call, services. EU support. | [](https://www.npmjs.com/package/@vineethnkrishnan/pagerduty-mcp) | | [@vineethnkrishnan/hubspot-mcp](packages/hubspot) | HubSpot — contacts, deals, companies | [](https://www.npmjs.com/package/@vineethnkrishnan/hubspot-mcp) | | [@vineethnkrishnan/intercom-mcp](packages/intercom) | Intercom — conversations, contacts, support | [](https://www.npmjs.com/package/@vineethnkrishnan/intercom-mcp) | | [@vineethnkrishnan/shopify-mcp](packages/shopify) | Shopify — orders, products, customers | [](https://www.npmjs.com/package/@vineethnkrishnan/shopify-mcp) | | [@vineethnkrishnan/google-workspace-mcp](packages/google-workspace) | Google Workspace — Gmail, Calendar, Drive, Sheets | [](https://www.npmjs.com/package/@vineethnkrishnan/google-workspace-mcp) |


Quick Start

Prerequisites

  • Node.js >= 20 (see [.nvmrc](.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 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
│   └── /            # 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

  1. Create packages// following the structure in packages/stripe/
  2. Implement a service layer (API wrapper) and tool layer (MCP interface)
  3. Add tests — aim for full coverage
  4. Add the package entry to release-please-config.json and .release-please-manifest.json
  5. Add documentation pages in docs/

See [CONTRIBUTING.md](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 guide

Enforced via commitlint + husky pre-commit hooks.


Documentation

Visit the documentation site for detailed guides on each MCP server.


Roadmap

See the [roadmap](roadmap/) for planned features and upcoming milestones:

  • [v0.2.0](roadmap/v0.2.0.md) — Write operations, SSE transport, streaming responses
  • [v0.3.0](roadmap/v0.3.0.md) — Webhooks, multi-account, expanded API coverage, new servers

License

[MIT](LICENSE) — Vineeth Krishnan

Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet — be the first.

Versions

  • v0.1.0 Imported from the upstream source.