Labsco
StonesofCreation logo

StackSwap MCP

from StonesofCreation

B2B SaaS GTM stack intelligence β€” 17 tools spanning catalog search, overlap detection, n-way vendor comparison, decision-stage buyer questions, and renewal-negotiation playbooks.

πŸ”₯πŸ”₯πŸ”₯βœ“ VerifiedFreeQuick setup

StackSwap MCP

smithery badge

A hosted Model Context Protocol server that gives AI clients access to StackSwap's B2B SaaS GTM stack intelligence β€” tool catalog, vendor fact sheets, overlap detection, AI-native swap suggestions, stack audits, n-way comparisons, category landscapes, buyer questions, renewal-negotiation playbooks, and a full-text operator knowledge base.

Live endpoint: https://stackswap.ai/api/mcp Docs: stackswap.ai/mcp Status: Free, no API key, stateless. 17 tools β€” 16 read-only + 1 write (submit_correction, queued for human review).

This repo contains public documentation, JSON schemas, and an example client for the hosted MCP server. The server itself is closed-source β€” it runs as part of stackswap.ai and wraps the same scan engine and tool catalog that powers the web product.


Tools

Seventeen tools across eight domains. Schemas are in schemas/tools.json (extracted directly from the live tools/list response).

Catalog

ToolWhat it does
search_toolsFuzzy-search ~400 GTM tools by name. Returns each match with monthly cost and a StackSwap partner sign-up link when applicable.
get_tool_detailsFull StackSwap profile for a single tool: cost (catalog + per-seat with confidence), AI-readiness score, category, common overlaps, swap-registry status.
get_vendor_fact_sheetFull vendor fact sheet (GTM Decision Schema v1.0.0): pricing tiers with gotchas, integration depth scores, AI capabilities + customer-data-for-training disclosure.

Stack analysis

ToolWhat it does
find_overlapsGiven a stack, return the redundant pairs StackSwap has hand-verified (104-pair overlap registry) with consolidation savings.
suggest_swapsPer-tool AI-native replacement recommendations (Outreach β†’ Smartlead, ZoomInfo β†’ Apollo) with annual savings and reasoning.
scan_stackPreview StackScan: tools + team size + industry in, current spend / optimized spend / monthly-annual recoverable / headless gaps out.
recommend_partnerGiven a need ("outbound", "CRM", "automation"), return StackSwap's recommended partner(s) with positioning.
recommend_stackReference starter stack for an industry vertical with per-tool cost, total spend, AI-readiness and headless-readiness scores.

Compare

ToolWhat it does
compare_toolsHead-to-head: cost delta, AI-readiness, headless-readiness (MCP/API callability), overlap status, and a recommended pick with reasoning.
compare_tools_n_way2–6 tools side-by-side in one markdown matrix β€” cost, AI-readiness, headless-readiness, overlaps within the set, StackSwap pick.

Content

ToolWhat it does
search_contentFull-text search across ~50 first-party operator articles on stack architecture, AI-native swaps, RevOps, and decision frameworks.
get_kb_articleFetch a knowledge-base article's full body as markdown, with canonical URL, category, and last-modified date.

Categories

ToolWhat it does
get_category_landscapeFull map of one GTM category β€” leaders, runner-ups, skip/replace candidates β€” with cost, AI-readiness, swap-registry status per tool.

Detect

ToolWhat it does
detect_stack_from_textInfer a GTM stack from freeform text (careers page, job posting, site HTML, RFP, DevTools network tab). Ranked matches with confidence levels.

Decision support

ToolWhat it does
get_buyer_questions10–20 questions to ask a vendor before signing, with "why it matters" and red-flag answers. Vendor-specific gotchas when you pass a vendor.
get_renewal_strategyRenewal-negotiation playbook per vendor: leverage points, price-anchor alternatives, calibrated discount ask, walkaway script, timing window.

Write

ToolWhat it does
submit_correctionSubmit a catalog correction (pricing, features, gotchas, scores). Queued for admin review β€” never propagates to user-facing surfaces unreviewed.

Example client

A minimal TypeScript example that connects, lists tools, and runs find_overlaps is in examples/client.ts.

Copy & paste β€” that's it
npx tsx examples/client.ts

The protocol is plain JSON-RPC 2.0 over HTTP β€” any language with a JSON parser and an HTTP client can call it.


Endpoint details

JSON-RPC URLPOST https://stackswap.ai/api/mcp
Server descriptorGET https://stackswap.ai/api/mcp (returns name, version, tool list)
Protocol versions2025-06-18, 2025-03-26, 2024-11-05
TransportStreamable HTTP, stateless
AuthNone
Rate limitNone (reasonable use)
CORS*

Why hosted, not stdio

StackSwap's MCP server runs inside the existing stackswap.ai Next.js application as a single route handler. Hosting it ourselves means:

  • No install friction β€” one claude mcp add line, no npm/pip dependency
  • Always current β€” the underlying tool catalog, overlap registry, vendor fact sheets, and swap data update as the StackSwap product evolves
  • Zero local compute β€” the scan engine runs server-side; clients just send JSON-RPC

The trade-off: it requires an internet connection, and we (StackSwap) see request volume and tool-call patterns. We don't store conversation data or user identifiers β€” the endpoint is stateless.


Requests, issues, feedback

Open an issue if you want a tool added, a behavior changed, or you've hit a bug. The MCP surface is shaped by what operators actually ask about.

Contact: nick@stackswap.ai


License

MIT β€” see LICENSE.

This license covers the public documentation, JSON schemas, and example clients in this repository. It does not cover the closed-source server implementation that runs at stackswap.ai/api/mcp.