Every SaaS company suddenly has an "MCP server". Most articles about it are either a press release or a wall of JSON. This one is neither. Here is what the Model Context Protocol actually does, drawn out rather than described; what it looks like from the inside, using real output from the server we run ourselves; and which of the 425 tools in our database offer one — with what it costs, taken from their own documentation, and "not stated" where they don't say.
Start with the annoyance, not the acronym. You are in Claude or ChatGPT, and you ask something that needs your own data: what did we spend on software last quarter, which support tickets mention the new pricing, is this contractor's paperwork done. The model can reason perfectly well about all three. It just cannot see any of it.
The old fix was an integration per pairing. Every AI app had to build a connector for every tool, and every tool had to build one for every AI app. Three clients and three tools means nine integrations to write and — the part that actually kills projects — nine to maintain when an API changes. That is the mess on the top half of the picture below.
MCP, an open standard originally published by Anthropic, replaces that with one shared interface. The tool ships a server. The AI app is a client. Each side implements the protocol once. Three plus three, and the fourth AI client you adopt next year costs nothing to support.
Our illustration. The count is the point: integrations grow multiplicatively without a standard, and additively with one.
That is genuinely all the idea is. The reason it spread so fast is not technical elegance — it is that it let vendors stop guessing which AI assistant their customers would standardise on.
get_dossier(name). The model reads the list of tools and their descriptions, decides which to call, and the client executes it. The description text matters enormously: it is the entire instruction manual the model gets.An MCP session is short and boring, which is a compliment. Messages are JSON-RPC 2.0. The client says hello, asks what the server can do, and then calls things. There is no magic and no model involved on the server side at all — the server is a dumb, well-described API surface, and all the intelligence stays in the client.
Our illustration, using the real method names. If you have ever wondered what your AI client is doing in the two seconds after you connect a tool: this.
Two consequences follow from that shape, and they explain most of what you will experience in practice. First, tool descriptions are the product. The model picks tools by reading their text, so a server with vague descriptions gets ignored or misused, no matter how good its API is. Second, the result goes into the context window. A server that dumps 40KB of JSON per call will crowd out the conversation and cost you money. Good servers return compact prose. That is a design decision, and vendors vary wildly on it.
We are not a neutral bystander here. We publish an MCP server ourselves — the Honest Atlas MCP — and everything above comes from having built and maintained one rather than from reading the spec. Here is what it is, honestly.
The problem we built it for is narrow and real: AI assistants are confidently wrong about SaaS pricing. Ask any of them what a tool costs and you get a number that was true eighteen months ago, or a vendor's headline price with the per-seat multiplication quietly omitted. Meanwhile we sit on 300 hand-researched dossiers with the real pricing notes, the honest knock, and who should skip each tool. Publishing that as a webpage helps humans. Publishing it as an MCP server helps the place where people are increasingly making the decision.
Our illustration of our own server. 242 lines of Python, standard library only, no account, no telemetry.
It exposes four tools. This is the literal tools/list response, captured by piping JSON-RPC into the
server on the machine this page was built on:
$ echo '{"jsonrpc":"2.0","id":2,"method":"tools/list"}' | python3 atlas_mcp.py
search_tools find tools by need, with honest one-liners + pricing
get_dossier the full honest dossier for one tool
compare_tools 2-4 tools side by side
list_categories orient a search
And this is a real answer, not a mock-up — get_dossier("Miro"), trimmed for length:
# Miro — honest dossier Category: Operations & Workflow · miro.com The honest knock: Per-member pricing charges for every member added to the workspace, so an org-wide rollout multiplies at full headcount — and the free plan's 3-board cap is workspace-wide, not per person, so real teams outgrow it in days. Model who truly needs to edit before you buy seats. — Source: The Honest Software Atlas by AIBuilder Marketplace. Hand-researched; no invented numbers. try_url links are affiliate links (commission possible, never changes the take).
The disclosure has to travel with the data. Our dossiers contain affiliate links. On a webpage the
disclosure sits at the bottom of the page and the reader sees it. Through MCP there is no page — the model receives
text and paraphrases it to the user. So the affiliate disclosure and the source attribution are appended to every
single tool response, and the server's initialize instructions tell the model to pass both through. If you
publish an MCP server with commercial links in it and you do not do this, your disclosure effectively disappears.
Compact beats complete. Our first version returned the full dossier JSON. It was accurate and useless: it ate the context window and the model started summarising away exactly the caveats we care about. Returning short, opinionated prose with the knock intact works far better.
Stale data beats no data. The server caches the dossier feed for 24 hours. If the fetch fails and the cache is expired, it uses the expired cache anyway rather than erroring. An assistant that says nothing is worse than one that says something slightly old with a date attached.
Zero dependencies was the right call. No pip install, no lockfile, no supply chain. One file you can read in ten minutes before you run it — which, given that you are about to let it talk to your AI assistant, is the minimum any of us should demand.
We went through all 425 tools in our database and checked, one by one, whether the vendor themselves publishes an MCP server. The rule was strict: it counts only if it is documented on their own domain, or shipped from their own verified organisation. Community servers on GitHub — and there are hundreds, some excellent — do not count here, because you cannot hold a weekend project to an uptime promise. Several well-known tools failed that test: there are popular third-party MCP servers for Pipedrive, Aircall, Toggl Track and Kinsta, but nothing first-party we could find, so they are not in this list. Two entries here — Bybit and QuickBooks — are documented from the vendor's own GitHub organisation rather than their own site. We say so on their cards, and the update note at the end of this article explains where we bent the rule and why.
74 passed. Each card below states what the server actually does, and what the vendor says about plan and price — in their words, with a link to the page we took it from. Where they say nothing, we say "not stated".
MCP for 1Password Environments: create environments, list variable names and handle .env files — the secrets themselves never enter the model's context window.
Plan & price: Not stated in their own documentation.
Server over accessFlow, their developer product: an AI assistant in the IDE can query the accessibility knowledgebase, get WCAG-aligned explanations, surface high-priority issues and propose code-level fixes. Shipped alongside an SDK for CI/CD scanning.
Plan & price: Not stated in their own announcement.
Hosted remote server: read and update contacts, tags, custom fields, lists and automations. You copy your own MCP URL from your developer settings.
Plan & price: Their help centre states the MCP server is available on all plan tiers.
Amplemarket MCP: connect the Amplemarket account to Claude or ChatGPT and prospect from inside the conversation — search for people with plain-English filters, enrich contacts, research accounts (tech stack, org structure), check previous touchpoints with a contact, and create or manage lead lists. Their own announcement also shows adding results straight to a list or a sequence. The product server answers on mcp.amplemarket.com/mcp (401 without a token); docs.amplemarket.com/mcp is their Mintlify documentation-search server, not this one.
Plan & price: Not stated in their own documentation. The announcement says setup takes under a minute and needs no API key — you sign in with your Amplemarket account when prompted — and that the data comes from your own account. No plan requirement or price for the MCP itself is published.
Hosted server at mcp.amplitude.com/mcp (mcp.eu.amplitude.com for the EU), OAuth, streaming HTTP. Queries charts, dashboards and notebooks, manages experiments, feature flags and cohorts, reads session replays, and reads and writes the tracking-plan taxonomy including branch workflows.
Plan & price: Their docs: "Any existing Amplitude customer can use Amplitude MCP from an MCP-capable client." No tier is named and no extra cost is mentioned. Write calls are gated by permission rather than by plan — creating or updating requires the Use MCP (write) RBAC action.
Server at mcp.apollo.io/mcp: search and enrich prospects, manage records, run sequences and read analytics.
Plan & price: Their docs: there is no additional cost to connect — your existing Apollo plan, permissions and credits still apply. Enrichment therefore still burns credits.
Your newsletter's content, subscribers, performance metrics, podcasts, automations, products, surveys, polls and referrals.
Plan & price: All beehiiv users, no upgrade required — but on a free plan it is read-only. Write actions require a paid beehiiv plan.
Server over Amazon advertising and marketplace data: per-ASIN snapshots of price, rating, review count and bestseller rank, historical BSR series, competitor sets built from Amazon's own category bestseller lists, and search-query-performance funnel data.
Plan & price: Not stated. It is invite-only — their words: "The BidX MCP is currently in beta (invite only)", and you get in through your account manager.
Server at api.bitscale.ai/mcp, added in Claude as a custom connector and approved per workspace: find personas, create and change grids, run enrichments and read run status in plain language. Every action goes through the same grid interface as the platform, so you can open the grid afterwards and see exactly what it did.
Plan & price: Their docs: "The Bitscale MCP is in beta. It's currently available to a limited set of beta users and enterprise customers." Access is by request.
Server at mcp.brevo.com: 27 modules spanning contacts, email campaigns, CRM deals, SMS and WhatsApp, templates and account management.
Plan & price: Not stated in their own documentation.
Search, navigate and extract public web data without getting blocked. Runs fully managed or self-hosted.
Plan & price: Every new account includes 5,000 free requests a month; beyond that you go through your account manager.
Official trading MCP with 206 tools across market data, orders, positions and account. The 22 market-data tools work read-only without any API key.
Plan & price: Price not stated; read-only market data works without a key.
Server at app.castmagic.io/mcp over OAuth, with no API key to copy: search transcripts, recordings and content, list spaces and recordings, and fetch a recording's transcript or generated content.
Plan & price: Their MCP page states the same plan gating as the REST API applies to each tool. On their plan-tier page the core tier — reads, transcripts and search, which is what the MCP exposes — is "Starter and up", and an account with no active subscription gets a 403 reading "Your plan does not include API access."
Read community analytics, member lists and posts; write actions such as inviting members or posting need your explicit approval each time.
Plan & price: Business plans and above, at no additional cost. Community admins only — regular members cannot use it.
Connector between a Clay workspace and Claude, ChatGPT, Microsoft Copilot or Glean. Workspace admins decide which reps get access, how many credits each may spend a month, and which Functions they can invoke, all from Settings → MCP users.
Plan & price: Not stated for MCP access itself. Their docs do put the surrounding admin controls on paid plans: credit controls and usage monitoring on Launch, Growth, Enterprise and Legacy Enterprise, the "Enable for MCP" option on Functions on the same plans, and Audiences controls on Enterprise.
Hosted server at mcp.clickup.com/mcp covering tasks, docs, time tracking, workspace search and chat. Delete operations are deliberately not supported.
Plan & price: All plans. Free: 50 calls a day; Unlimited and above: 300 a day on a rolling 24-hour window; with the Everything AI add-on you get the standard public API limits.
OAuth server for leads, activities and opportunities, with separate scopes for read, safe-write and destructive-write.
Plan & price: Not stated in their own documentation.
Remote read-only server at bot.clutch.co/mcp: search their directory of 300,000+ verified service providers, pull client reviews complete with project scope, budget band and timeline, and browse fixed-price service packages. No SDK and no local install — their setup is the URL and nothing else.
Plan & price: Not stated. Their page names no plan, no price, no account and no API key — the example configuration is a bare URL with no credentials in it.
Local server for the Falcon platform across 16 modules: detection search, fleet queries by platform or sensor version, CVE hunting, adversary research, cloud posture, identity risk and firewall rules, plus Real Time Response. Minimum API scopes are Hosts: READ and Alerts: READ.
Plan & price: Not stated. Their documentation lists the modules but says nothing about which Falcon subscriptions or module entitlements you need for them.
Server over people, campaigns, broadcasts and messaging, scoped by OAuth scopes — read is required, write:live covers sending messages and managing subscriptions and suppressions. Several tools support dry-run previews before anything is sent.
Plan & price: Not stated in their own documentation.
Server at mcp.databox.com/mcp with two core tools: ingest_data and query_dataset_with_ai — push data in, then ask questions about it in plain language. Their affiliate team adds (31 Jul 2026) that one connection reaches the sources already set up in your Databox account — they put that at 130+ — rather than a separate MCP server for every platform.
Plan & price: Every paid plan — the feature comparison marks the MCP server as not included on Free. Use is metered: MCP queries draw on the same monthly AI credit pool as their Genie assistant, 500 credits on Analyst, 1,500 on Pro, 4,000 on Growth and custom above. The 14-day free trial runs on the Growth plan. Their affiliate team confirmed the paid-plan requirement to us in writing on 29 Jul 2026.
Server at api.letsdeel.com/mcp: retrieve contracts, run worker-level operations and submit time-off requests. OAuth2 or a personal access token.
Plan & price: Not stated in their own documentation.
First-party hosted server: import media, run Underlord edits, create and manage compositions, and export. Their API page presents it as the conversational way in — connect the Descript MCP to Claude or another assistant and trigger imports and edits by asking.
Plan & price: Their own API page states API access is available for all paying users at no additional cost, with usage drawing from the AI credits and media minutes on your plan, and presents the MCP as a way to use that API (https://www.descript.com/api, read 14 Aug 2026).
Publish any Dify app as an MCP server — and consume other MCP servers as tools inside your workflows. It works both ways.
Plan & price: Not stated in their own documentation.
Server over their MRP and ERP data: check the production schedule and what it needs, ask what will run short before a run, redraft a purchase order from an earlier one, and build sales orders in plain language. Drafts wait for your review before anything is created.
Plan & price: Not stated in their own announcement.
Generate speech, clone voices, transcribe audio and spin up outbound voice agents from Claude or Cursor.
Plan & price: The server is open source and free to run locally; every call spends credits from your ElevenLabs account.
Hosted server at mcp.envoy.com over their visitor- and workplace-management API: review visits along with approvals and signed documents, check visit compliance, forecast attendance, and handle desk and room booking.
Plan & price: Not stated in their own documentation.
Server at api.fireflies.ai/mcp: meeting transcripts, summaries, action items and speaker data, over OAuth.
Plan & price: Not stated in their own documentation.
Server shipped as the @frase/mcp-server npm package: analyse the live SERP, run a competitor gap, build the brief, draft and score the page for SEO and GEO, audit a domain, read back AI-visibility and Search Console data, and publish to WordPress, Webflow, Sanity, Wix or FraseCMS once you approve.
Plan & price: Included with Frase, from $39 a month billed yearly. Their words: "There is no separate add-on." Activity through the server counts against the same plan limits as the app — the briefs, audits and content you already pay for. A 7-day trial, no card.
MCP integration that lets Cursor or Claude connect securely to your Freshservice environment.
Plan & price: Early Access Program: beta, Enterprise plan only, and on request via your technical account manager or support.
A developer-platform server rather than a product one: it automates the custom-app submission process on their developer platform, authenticated with a bearer API key.
Plan & price: Not stated in their own documentation.
Generate decks, docs and sites from a prompt or a template, check generation status, export to PDF/PPTX/PNG and read analytics.
Plan & price: Available on all Gamma plans; generations charge credits.
Remote server at gixo.ai/mcp. Six Lumen creation tools (pitch deck, board, sales and training presentations, from-URL, editable chart) and four analysis and routing tools work anonymously; execute_business_artifact needs a bearer token.
Plan & price: Price not stated. Their docs split it by access instead: ten tools are anonymous and need no account, while business-artifact execution "requires a bearer token mapped to an entitled Gixo account".
Server over their helpdesk: review AI-agent handovers, draft skills and guidance, edit product information, and preview how the AI agent would answer a message before you switch anything on.
Plan & price: Their requirements section: "Available on all Helpdesk plans. Everyone can install the Gorgias MCP." What you can actually do is set by your Gorgias role, not your plan.
Read-only access to payroll and people data; you choose which categories of data the model is allowed to see.
Plan & price: Not stated in their own documentation.
Employee data, time off and tasks over a hosted endpoint, fenced in by the permissions of a Bob service user.
Plan & price: Not stated in their own documentation.
Exposes the Hostinger API: websites, VPS, domains and DNS, email marketing, subscriptions and payments, and e-commerce.
Plan & price: Not stated. You need an API token from hPanel, or OAuth for production use.
Two servers. A hosted remote server at mcp.hubspot.com gives any MCP client read and write access to CRM records, marketing and content objects and full activity history over OAuth 2.1 with PKCE; a local Developer MCP server drives the HubSpot Developer Platform through the CLI.
Plan & price: Their changelog: the remote server graduated from beta and is "generally available to all HubSpot accounts" as of 13 April 2026. No separate price is named, your existing HubSpot permissions apply, and accounts with sensitive data switched on have activity objects blocked from the server.
Server over time tracking and organisation data, restricted to owners and managers of an active Hubstaff organisation.
Plan & price: Not stated. Their page gates on role rather than plan, and points you at support if you want early access.
Server at mcp.jotform.com: create forms and read submissions, with an OAuth consent screen per user.
Plan & price: Their own FAQ answers it: "Is the MCP free? Yes, the MCP server is available at no additional charge. Your existing Jotform plan limits and features remain in effect." Enterprise adds higher rate limits (up to 600 requests a minute), white-labelling of the MCP App and SSO.
Server for AI agents over Keeper Secrets Manager, shipped as a Docker image and a Node build: list, search and retrieve secrets, create and update entries, handle file attachments, generate passwords and TOTP codes. Agents are scoped to named vault folders and sensitive operations prompt for human confirmation.
Plan & price: Not stated on their MCP pages. Their adjacent AI Agent Kit page does require "a Keeper Security account (Business or Enterprise)", but that is a different artifact, so we are not reading it as the server's plan.
Server at app.lemlist.com/mcp: create, update, start and pause campaigns and sequences, manage leads, enrich emails and read team analytics.
Plan & price: Price not stated; enrichment operations (email finding, verification, phone enrichment) do consume credits.
Two servers: a cloud one over OAuth with no API key or local install, and an open-source self-hosted Node build that runs on your machine with your own API key. Search meetings, pull transcripts, summaries, highlights, action items and analytics.
Plan & price: Their requirements list, in as many words: "A MeetGeek account (the Free plan works)." The paid plans they do name are the AI client's — Claude Pro, Team or Enterprise, ChatGPT Plus, Team or Enterprise.
Server at mcp.miro.com: read and build boards — frames, sticky notes, shapes, cards, tables, architecture and sequence diagrams, plus reading and resolving comments.
Plan & price: Enterprise. An admin has to enable the MCP server for the organisation before anyone can connect.
Hosted server covering boards, items, updates and workspace data, discoverable through a machine-readable card at monday.com/.well-known/mcp.json.
Plan & price: Their own FAQ, in two sentences: "MCP is currently available for all monday.com plans" and "There is currently no additional cost to use monday MCP." They add the caveat most vendors leave out — you may still pay the AI client you run it from.
Read access across the travel and expense dataset: spend summaries, transaction detail and policy data. Write access is announced but not live.
Plan & price: Not stated in their own announcement.
Official Plesk extension exposing the Plesk and WP Toolkit REST APIs to ChatGPT, Claude or Gemini — server administration in plain language.
Plan & price: Free from the Plesk Extension Catalog. Plesk Obsidian for Linux 18.0.72 and above only; no support during the beta and not meant for production.
Server at mcp.usepylon.com: read and update issues, accounts and contacts — exactly the data you can already see in Pylon yourself.
Plan & price: Price not stated. You do need a Member or Admin role with 'MCP Access' enabled, and rate limits apply per tool.
Local server from Intuit's own GitHub organisation, run as a stdio subprocess and published as an npm package: 144 tools across 29 entity types with full create, read, update, delete and search, plus 11 financial reports including balance sheet, P&L and cash flow. OAuth against a sandbox company or, once you have completed the production handshake, your live QuickBooks Online company.
Plan & price: Not stated. Intuit's repository says nothing about which QuickBooks plan the server needs or whether it costs extra. Their separate Claude connector — which Intuit nowhere calls MCP — does require an active QuickBooks or Intuit Enterprise Suite subscription and is US-only for now.
Three tools — create_app_from_prompt, update_app_using_prompt and ask_question — letting an MCP client drive Replit Agent to build real apps.
Plan & price: Works with a Free, Core, Pro or Enterprise account. What the underlying Agent runs cost is not specified in that documentation.
Reply MCP: een officiële, live remote server op mcp.reply.io met 70 tools over sequences (16), contacten (8), inbox en gesprekken (3), de Jason AI SDR (31), taken (3), workspace-resolvers (5) en help/meta (4). Elke tool draagt een veiligheidslabel — 31 zijn readOnlyHint, 39 destructiveHint — zodat een client kan aftoppen vóór er iets met gevolgen draait. Streamable HTTP (JSON-RPC 2.0 over SSE), MCP-protocol 2025-06-18. Inloggen met een scoped persoonlijke API-sleutel (Authorization: Bearer) waarop je per gebied rechten zet, of met OAuth voor clients die geen headers ondersteunen — OAuth geeft wel meteen de volledige toolcatalogus. Limiet ~3000 calls per uur.
Plan & price: Niet vermeld in hun eigen documentatie. Reply schrijft alleen dat MCP en de REST-API twee oppervlakken op één product zijn: hetzelfde account en hetzelfde creditsysteem. Er staat geen plan-eis of prijs voor de MCP-server zelf; je hebt wel een Reply.io-API-sleutel nodig.
Server run locally over stdio or as an HTTP service, published as an npm package: retrieve, create and update contacts, send messages, WhatsApp templates and email, assign and close conversations, and manage custom fields, tags and internal comments.
Plan & price: Not stated. You need a Developer API access token from your workspace settings; their page says nothing about which plan includes one.
Built on Code Mode rather than one tool per API: the agent searches a catalog of functions and executes code against them, across HR, IT, Time and Payroll. Rippling puts the token cost of a typical task at 98% below wrapping their 238 APIs as tools.
Plan & price: Not stated in their own announcement.
Server at mcp.rocketreach.co/mcp over OAuth 2.1: search 700M+ professional profiles and companies, look up contact details for a person or company, and read your own plan and credit balance.
Plan & price: Price not stated. Their docs require "a RocketReach account with API access" and list the credit cost per tool: searches and status checks cost nothing, a person lookup costs one lookup plus one export credit, a company lookup one company export credit.
Two servers: an API server for pods, endpoints, templates and volumes (needs an API key), and a docs server at docs.runpod.io/mcp that needs no authentication at all.
Plan & price: Not stated in their own documentation.
Hosted server at mcp.seamless.ai/mcp: 54 tools across 11 domains — contact and company search, research and enrichment, lists, saved searches, campaigns, tasks, templates, email drafts and sends, call logging and the activity feed — plus 7 read-only seamless:// resources for credit balance, templates and email accounts. Every tool carries a read, write or destructive label so the client can ask before anything with side effects runs. OAuth 2.1, or an API key for clients without it.
Plan & price: Split by licence, not by price: search, research, lists, saved searches and the credit/user lookups are open to all users; campaigns, tasks, templates, email, calls, activity and Connect config need a Connect licence, with campaigns and tasks needing Connect (full). MCP also has to be switched on for the account. No price for the MCP server itself is published.
Two builds of the same server: a hosted HTTP endpoint you authorise once with OAuth and use from web, desktop and mobile, or a local Node.js STDIO build where the API token never leaves your machine and you pick which tool groups to load. 63 SEO tools — keyword research, competitor gaps, backlink audits, site audits and rank tracking.
Plan & price: Team plan and above. Their own plan comparison lists "API, ChatGPT and Claude Integration (MCP)" as a Team feature and marks API access as absent on the Individual plan below it. Use is metered: every query spends Serpstat API credits at standard API pricing — 100 credits for 100 domain keywords, 5 for a backlinks summary. The 7-day trial includes full API access.
Server connecting ChatGPT or Claude to jobs, scheduling and client data for field-service work — a custom app on ChatGPT's side, a custom connector on Claude's.
Plan & price: Not stated for ServiceM8 itself. What they do say about availability points elsewhere: it "depends on the ServiceM8 MCP tool list, your AI platform's plan and settings, workspace admin controls, and action permissions."
Server at mcp.shippo.com: compare carrier rates, buy labels, track packages, validate addresses and handle customs.
Plan & price: Works across all plan types. Reads — rates, address validation, tracking — cost nothing; buying a label charges your live account and asks for confirmation first.
Hosted server at mcp.similarweb.com: website and keyword analysis, app-market data across iOS and Android, Amazon seller and product data, and lead enrichment from digital behaviour.
Plan & price: Stated plainly: a "Similarweb subscription with API access: API-only, Business, or Enterprise plans", plus an active API key from your account settings. Metered too — "MCP uses the same data credits as standard API calls", and a chattier agent that pulls several endpoints spends more of them.
Server at mcp.softr.io/mcp: 20 tools across databases, tables and records — read and write, over OAuth or a personal API token.
Plan & price: Not stated in their own documentation.
Server at mcp.storeseo.com/mcp for their Shopify SEO app: connect a store through a pop-up that lets you pick the store and scope what the assistant may do, then optimise product listings, generate image alt text and fix meta descriptions from a prompt.
Plan & price: Not stated in their own documentation.
Server over interactive demos: read demo analytics — views, unique visitors, session duration, CTA clicks, completion rate — list engaged accounts and captured leads, browse the demo library across workspaces, and list AI voices. Every tool is scoped to the data your own account can see.
Plan & price: Not stated. Their page does discuss Free, paid and company accounts, but those are ChatGPT's account tiers governing custom connectors, not Storylane plans — a distinction worth reading carefully before you assume you are gated.
Hosted server at api.sunsama.com/mcp over OAuth, connectable from ChatGPT's plugin directory or as a custom connector, letting an assistant work with your tasks and daily plan.
Plan & price: Not stated. The plan labels on their page — Claude Pro/Team, Notion paid — belong to the client you connect from, not to Sunsama.
Remote server over the whole feedback loop: list surveys and their questions, pull survey and per-question results (response and completion counts, answer distributions, NPS and CSAT) over a date range, search the responses, read and start AI research projects, and draft a survey that lands in the panel for review before launch. One-click OAuth, no API keys; every call runs as the connected user, so workspace role, folder access and Research Hub role apply as they do in the panel.
Plan & price: Not stated in their own documentation — the only subscription their help centre names is that of the AI assistant you connect from.
Hexa AI MCP at cloud.tenable.com/mcp: 90 structured tools over the Exposure Data Fabric — assets, vulnerabilities, dashboards and scans.
Plan & price: Requires a Tenable One Foundation or Tenable One Advanced licence. Paid only, and not available in FedRAMP Moderate environments.
First-party server at ai.todoist.net/mcp, plus a Todoist plugin that wires up the configuration for you.
Plan & price: Not stated for Todoist itself; their guide does note that Claude Code requires a paid Claude plan.
Wati MCP: one connection that lets Claude or ChatGPT manage contacts, send WhatsApp campaigns, read past chats and build AI agents in plain language. Sends go out on the same official number and approved templates, and the full history stays in the Wati dashboard.
Plan & price: Free for all current paid Astra customers, with no usage cap during launch. New customers get full MCP access on every Astra plan.
Open-source server over their Data, Designer and Browser APIs: manage sites and pages, read and write freeform custom code, handle registered scripts and custom fonts. A few capabilities only work with the Designer open and the Bridge App connected.
Plan & price: Not stated in their own documentation.
Server for uploading video, making bulk updates, managing access and reading performance data from your agent. Every action asks for approval by default; you can set a tool to always-approve or block it.
Plan & price: Their FAQ: "All Wistia accounts have access to Wistia's MCP server... no upgrade needed." Anything you can do in the app you can do through the server; you only upgrade for more product features. Restricted by role rather than plan — owners and managers only.
Hosted remote server at api.woodpecker.co/mcp/v1: paste the URL into your AI client, sign in to Woodpecker and approve — no API key and no local server. Manage campaigns, prospects, email sequences, mailboxes and campaign reporting in natural language, and set each tool to run automatically, ask for approval, or not at all. A local Docker build authenticated with an API key exists as well, and their docs name it the only route to Agency client accounts: the hosted server cannot select an account managed under an Agency.
Plan & price: Their pricing page lists MCP Server inside the paid Integrations add-on, next to Claude, Clay, API, Webhooks and CLI — not in the base plan. The docs page itself states no plan.
Query projects, manage tasks and navigate folders from Claude, ChatGPT, Copilot or Cursor.
Plan & price: Not stated in their own documentation.
Open-source local server connecting an LLM to Xero accounting data, part of an AI toolkit that also ships a CLI and OpenAI Agents SDK and LangChain integrations. A hosted remote server exists too, but only as a closed beta under separate terms.
Plan & price: Not stated for the open-source server. The remote beta's own terms are blunter than most: "if the Software moves out of beta phase and is released commercially, you may need to pay for use of the final commercial product."
Server for their dropshipping platform: search the catalog, request shipping methods and delivery windows per country, list and filter orders with tracking, pull revenue, profit and refund analytics, and trigger fulfilment behind a built-in confirmation step. Access runs on a token you generate, can scope to read-only and can revoke.
Plan & price: Their FAQ answers it directly: "Do I need a paid Zendrop plan to use the MCP server? You can get started free. Some features may require a paid plan depending on your store's volume and needs." No tier is named.
| Partner | Category | Status | What they say about plan & price | Source |
|---|---|---|---|---|
| IT & Productivity | Beta | Not stated in their own documentation. not stated | source | |
| IT & Productivity | Live | Not stated in their own announcement. not stated | source | |
| Growth & Revenue | Live | Their help centre states the MCP server is available on all plan tiers. stated | source | |
| Growth & Revenue | Live | Not stated in their own documentation. The announcement says setup takes under a minute and needs no API key — you sign in with your Amplemarket account when prompted — and that the data comes from your own account. No plan requirement or price for the MCP itself is published. not stated | source | |
| Analytics | Live | Their docs: "Any existing Amplitude customer can use Amplitude MCP from an MCP-capable client." No tier is named and no extra cost is mentioned. Write calls are gated by permission rather than by plan — creating or updating requires the Use MCP (write) RBAC action. stated | source | |
| Growth & Revenue | Live | Their docs: there is no additional cost to connect — your existing Apollo plan, permissions and credits still apply. Enrichment therefore still burns credits. stated | source | |
| Growth & Revenue | Live | All beehiiv users, no upgrade required — but on a free plan it is read-only. Write actions require a paid beehiiv plan. stated | source | |
| E-commerce | Beta (invite only) | Not stated. It is invite-only — their words: "The BidX MCP is currently in beta (invite only)", and you get in through your account manager. not stated | source | |
| Growth & Revenue | Beta (limited access) | Their docs: "The Bitscale MCP is in beta. It's currently available to a limited set of beta users and enterprise customers." Access is by request. stated | source plan | |
| Growth & Revenue | Live | Not stated in their own documentation. not stated | source | |
| IT & Productivity | Live | Every new account includes 5,000 free requests a month; beyond that you go through your account manager. stated | source | |
| Financial Operations | Live | Price not stated; read-only market data works without a key. not stated | source | |
| Video & Audio | Live | Their MCP page states the same plan gating as the REST API applies to each tool. On their plan-tier page the core tier — reads, transcripts and search, which is what the MCP exposes — is "Starter and up", and an account with no active subscription gets a 403 reading "Your plan does not include API access." stated | source plan | |
| Growth & Revenue | Live | Business plans and above, at no additional cost. Community admins only — regular members cannot use it. stated | source | |
| Growth & Revenue | Live | Not stated for MCP access itself. Their docs do put the surrounding admin controls on paid plans: credit controls and usage monitoring on Launch, Growth, Enterprise and Legacy Enterprise, the "Enable for MCP" option on Functions on the same plans, and Audiences controls on Enterprise. not stated | source | |
| Operations & Workflow | Public beta | All plans. Free: 50 calls a day; Unlimited and above: 300 a day on a rolling 24-hour window; with the Everything AI add-on you get the standard public API limits. stated | source | |
| Growth & Revenue | Live | Not stated in their own documentation. not stated | source | |
| Operations & Workflow | Live | Not stated. Their page names no plan, no price, no account and no API key — the example configuration is a bare URL with no credentials in it. not stated | source | |
| Security | Live | Not stated. Their documentation lists the modules but says nothing about which Falcon subscriptions or module entitlements you need for them. not stated | source | |
| CCustomer.io | — | Live | Not stated in their own documentation. not stated | source |
| Operations & Workflow | Under active development | Every paid plan — the feature comparison marks the MCP server as not included on Free. Use is metered: MCP queries draw on the same monthly AI credit pool as their Genie assistant, 500 credits on Analyst, 1,500 on Pro, 4,000 on Growth and custom above. The 14-day free trial runs on the Growth plan. Their affiliate team confirmed the paid-plan requirement to us in writing on 29 Jul 2026. stated | source plan | |
| HR & People | Live | Not stated in their own documentation. not stated | source | |
| Operations & Workflow | Live | Their own API page states API access is available for all paying users at no additional cost, with usage drawing from the AI credits and media minutes on your plan, and presents the MCP as a way to use that API (https://www.descript.com/api, read 14 Aug 2026). stated | source | |
| DDifyour dossier | IT & Productivity | Live | Not stated in their own documentation. not stated | source |
| Operations & Workflow | Live | Not stated in their own announcement. not stated | source | |
| Content & Media | Live | The server is open source and free to run locally; every call spends credits from your ElevenLabs account. stated | source | |
| Business Operations | Live | Not stated in their own documentation. not stated | source | |
| Communication & Voice | Live | Not stated in their own documentation. not stated | source | |
| Growth & Revenue | Live | Included with Frase, from $39 a month billed yearly. Their words: "There is no separate add-on." Activity through the server counts against the same plan limits as the app — the briefs, audits and content you already pay for. A 7-day trial, no card. stated | source | |
| IT & Productivity | EAP beta | Early Access Program: beta, Enterprise plan only, and on request via your technical account manager or support. stated | source | |
| Customer Support | Live | Not stated in their own documentation. not stated | source | |
| Operations & Workflow | Live | Available on all Gamma plans; generations charge credits. stated | source | |
| Design & Content | Live | Price not stated. Their docs split it by access instead: ten tools are anonymous and need no account, while business-artifact execution "requires a bearer token mapped to an entitled Gixo account". not stated | source | |
| Customer Support | Beta | Their requirements section: "Available on all Helpdesk plans. Everyone can install the Gorgias MCP." What you can actually do is set by your Gorgias role, not your plan. stated | source | |
| Financial Operations | Live (read-only) | Not stated in their own documentation. not stated | source | |
| Operations & Workflow | Beta | Not stated in their own documentation. not stated | source | |
| IT & Productivity | Live | Not stated. You need an API token from hPanel, or OAuth for production use. not stated | source | |
| Sales & CRM | Live | Their changelog: the remote server graduated from beta and is "generally available to all HubSpot accounts" as of 13 April 2026. No separate price is named, your existing HubSpot permissions apply, and accounts with sensitive data switched on have activity objects blocked from the server. stated | source plan | |
| HR & People | Live | Not stated. Their page gates on role rather than plan, and points you at support if you want early access. not stated | source | |
| Operations & Workflow | Live | Their own FAQ answers it: "Is the MCP free? Yes, the MCP server is available at no additional charge. Your existing Jotform plan limits and features remain in effect." Enterprise adds higher rate limits (up to 600 requests a minute), white-labelling of the MCP App and SSO. stated | source | |
| Security | Live | Not stated on their MCP pages. Their adjacent AI Agent Kit page does require "a Keeper Security account (Business or Enterprise)", but that is a different artifact, so we are not reading it as the server's plan. not stated | source | |
| Growth & Revenue | Live | Price not stated; enrichment operations (email finding, verification, phone enrichment) do consume credits. not stated | source | |
| Video & Audio | Live | Their requirements list, in as many words: "A MeetGeek account (the Free plan works)." The paid plans they do name are the AI client's — Claude Pro, Team or Enterprise, ChatGPT Plus, Team or Enterprise. stated | source | |
| Operations & Workflow | Live | Enterprise. An admin has to enable the MCP server for the organisation before anyone can connect. stated | source | |
| Project Management | Live | Their own FAQ, in two sentences: "MCP is currently available for all monday.com plans" and "There is currently no additional cost to use monday MCP." They add the caveat most vendors leave out — you may still pay the AI client you run it from. stated | source | |
| Financial Operations | Read-only | Not stated in their own announcement. not stated | source | |
| IT & Productivity | Very early beta | Free from the Plesk Extension Catalog. Plesk Obsidian for Linux 18.0.72 and above only; no support during the beta and not meant for production. stated | source | |
| Communication & Voice | Live | Price not stated. You do need a Member or Admin role with 'MCP Access' enabled, and rate limits apply per tool. not stated | source | |
| Finance & Accounting | Live | Not stated. Intuit's repository says nothing about which QuickBooks plan the server needs or whether it costs extra. Their separate Claude connector — which Intuit nowhere calls MCP — does require an active QuickBooks or Intuit Enterprise Suite subscription and is US-only for now. not stated | source plan | |
| IT & Productivity | Beta | Works with a Free, Core, Pro or Enterprise account. What the underlying Agent runs cost is not specified in that documentation. stated | source | |
| Growth & Revenue | Live | Niet vermeld in hun eigen documentatie. Reply schrijft alleen dat MCP en de REST-API twee oppervlakken op één product zijn: hetzelfde account en hetzelfde creditsysteem. Er staat geen plan-eis of prijs voor de MCP-server zelf; je hebt wel een Reply.io-API-sleutel nodig. not stated | source plan | |
| Communication & Voice | Live | Not stated. You need a Developer API access token from your workspace settings; their page says nothing about which plan includes one. not stated | source | |
| HR & People | Live | Not stated in their own announcement. not stated | source | |
| Growth & Revenue | Live | Price not stated. Their docs require "a RocketReach account with API access" and list the credit cost per tool: searches and status checks cost nothing, a person lookup costs one lookup plus one export credit, a company lookup one company export credit. not stated | source | |
| IT & Productivity | Live | Not stated in their own documentation. not stated | source | |
| Growth & Revenue | Live | Split by licence, not by price: search, research, lists, saved searches and the credit/user lookups are open to all users; campaigns, tasks, templates, email, calls, activity and Connect config need a Connect licence, with campaigns and tasks needing Connect (full). MCP also has to be switched on for the account. No price for the MCP server itself is published. stated | source plan | |
| Marketing | Live | Team plan and above. Their own plan comparison lists "API, ChatGPT and Claude Integration (MCP)" as a Team feature and marks API access as absent on the Individual plan below it. Use is metered: every query spends Serpstat API credits at standard API pricing — 100 credits for 100 domain keywords, 5 for a backlinks summary. The 7-day trial includes full API access. stated | source plan | |
| Operations & Workflow | Live | Not stated for ServiceM8 itself. What they do say about availability points elsewhere: it "depends on the ServiceM8 MCP tool list, your AI platform's plan and settings, workspace admin controls, and action permissions." not stated | source plan | |
| Operations & Workflow | Live | Works across all plan types. Reads — rates, address validation, tracking — cost nothing; buying a label charges your live account and asks for confirmation first. stated | source | |
| SEO & Marketing | Live | Stated plainly: a "Similarweb subscription with API access: API-only, Business, or Enterprise plans", plus an active API key from your account settings. Metered too — "MCP uses the same data credits as standard API calls", and a chattier agent that pulls several endpoints spends more of them. stated | source plan | |
| IT & Productivity | Live | Not stated in their own documentation. not stated | source | |
| SEO & Marketing | Live | Not stated in their own documentation. not stated | source | |
| Sales & CRM | Live | Not stated. Their page does discuss Free, paid and company accounts, but those are ChatGPT's account tiers governing custom connectors, not Storylane plans — a distinction worth reading carefully before you assume you are gated. not stated | source | |
| Operations & Workflow | Live | Not stated. The plan labels on their page — Claude Pro/Team, Notion paid — belong to the client you connect from, not to Sunsama. not stated | source | |
| Operations & Workflow | Live | Not stated in their own documentation — the only subscription their help centre names is that of the AI assistant you connect from. not stated | source | |
| IT & Productivity | Live | Requires a Tenable One Foundation or Tenable One Advanced licence. Paid only, and not available in FedRAMP Moderate environments. stated | source | |
| Operations & Workflow | Live | Not stated for Todoist itself; their guide does note that Claude Code requires a paid Claude plan. not stated | source | |
| Communication & Voice | Live | Free for all current paid Astra customers, with no usage cap during launch. New customers get full MCP access on every Astra plan. stated | source | |
| Website Builders | Live | Not stated in their own documentation. not stated | source | |
| Video & Audio | Live | Their FAQ: "All Wistia accounts have access to Wistia's MCP server... no upgrade needed." Anything you can do in the app you can do through the server; you only upgrade for more product features. Restricted by role rather than plan — owners and managers only. stated | source plan | |
| Sales & CRM | Live | Their pricing page lists MCP Server inside the paid Integrations add-on, next to Claude, Clay, API, Webhooks and CLI — not in the base plan. The docs page itself states no plan. stated | source plan | |
| Operations & Workflow | v2 in beta | Not stated in their own documentation. not stated | source | |
| Financial Operations | Live (remote server in beta) | Not stated for the open-source server. The remote beta's own terms are blunter than most: "if the Software moves out of beta phase and is released commercially, you may need to pay for use of the final commercial product." not stated | source plan | |
| E-commerce | Live | Their FAQ answers it directly: "Do I need a paid Zendrop plan to use the MCP server? You can get started free. Some features may require a paid plan depending on your store's volume and needs." No tier is named. stated | source |
Researched 2026-07-28. MCP is moving fast — check the source link before you commit to anything. Spotted a partner we missed, or a page that has changed? Tell us and we'll fix it.
First, the honest framing, because a lot of "best MCP server" content gets this wrong: for almost every tool here, the MCP server is not a product you buy. It is a door onto a subscription you already pay for. So ranking them by price is mostly meaningless. What is worth ranking is the door: can you open it on the plan you are actually on, how often can you use it, and will it let you write as well as read.
Our own count, from the 74 vendor pages linked above.
Both put the server on every plan including free. beehiiv is explicit that all users get it with no upgrade, with free plans read-only and writes requiring a paid plan — an honest, legible split. ClickUp is on all plans too and publishes its actual rate limits: 50 calls a day on Free, 300 on Unlimited and above. Published limits are rarer than they should be, and they are what tells you whether the thing is usable.
13 of the 74 are stated to work without a paid plan at all: Beehiiv, Bright Data, ClickUp, ElevenLabs, Gamma, HubSpot, Jotform AI Agents, MeetGeek, monday.com, Plesk, Replit, Wistia, Zendrop — though "free plan" and "free to run" are different promises, and each row above says which one applies.
5,000 requests a month on every new account, stated in writing. For an agent that needs to read the live web that is a genuine working budget rather than a demo, and it is the only server in this list that quantifies a free tier that precisely.
Their documentation says plainly that there is no additional cost to connect and that your existing plan, permissions and credits still apply. That is exactly the sentence a buyer needs. Note the tail of it though: enrichment through MCP spends the same credits it always did, so an agent left to enrich a large list will cost you real money quietly.
Shippo separates free reads (rates, tracking, address validation) from actions that charge your live account, and asks for confirmation before buying a label. Circle keeps read tools always-allowed and routes every write through an explicit approval. When an AI is holding the pen, that distinction is worth more than any feature list.
These 9 are the ones where the plan genuinely decides. Miro's is Enterprise and an admin must switch it on. Tenable's Hexa AI MCP needs a Tenable One Foundation or Advanced licence. Freshservice's is an Early Access Program on Enterprise, by request. Circle's needs Business or above and admin rights, though it costs nothing extra on top. Serpstat's is a Team feature — the Individual plan under it has no API access at all, and every query spends API credits on top. Seamless.ai splits by licence rather than price, so which tools you see depends on what your seat includes. If you are evaluating any of these because of MCP, check your tier before you get attached.
42 of these 74 vendors publish nothing about plan or price for their MCP server anywhere we could find on their own site. That is not a criticism of the servers — several are excellent — but we are not going to invent a price to fill a column. If pricing matters to your decision, ask them, and treat the silence as a question to raise rather than a detail to assume.
Update, 29 Jul 2026 — one column filled in. We took our own advice and mailed the vendors we had marked "not stated". Databox answered within a day: the MCP server is on every paid plan and not on the Free Forever plan. Their plan comparison says the same, and adds the part the email did not — MCP queries spend from the same monthly AI credit pool as their Genie assistant, so the allowance on your plan is the real limit. We had only checked their developer documentation, which still says nothing about plan or price; the answer was on the pricing page all along. Databox has moved out of this column and into the table above, sourced to both pages.
Update, 1 Aug 2026 — three we had missed. We re-ran every source link and, this time, also laid the official MCP registry against our partner list. The registry verifies a publisher's domain by DNS, so a match there is a strong first-party signal — and it surfaced three partners our manual sweep had walked past: Serpstat, Frase and Clutch. All three had a server before we published; we simply did not find their pages. They are in the count above now, checked the same way as the rest, on their own domains. We also mailed five vendors who say nothing about plan or price; so far only Databox has answered.
Update, 7 Aug 2026 — QuickBooks, and where we bent our own rule. Intuit maintains a QuickBooks Online MCP server in their own GitHub organisation: a local stdio server, 144 tools across 29 entity types, 11 financial reports, OAuth against a sandbox or your live company. We left it out at first, because our rule says the documentation has to sit on the vendor's own domain and no page on intuit.com calls it MCP — the customer-facing QuickBooks connector for Claude never uses the word. We have put it in anyway, because an official server in Intuit's own organisation is not a weekend project, which is what the rule was written to exclude. You should know that is a judgement call and not the same standard as the rest of the table. Intuit says nothing about which plan the server needs, so it joins the "not stated" column.
Update, 17 Aug 2026 — we re-checked the whole database, and our method was the problem. Every partner added since the last pass got the same treatment as the original 363, but this time we stopped guessing URLs and started looking: the official MCP registry, every vendor's sitemap, and their llms.txt. That turned up 21 first-party servers we had walked past — including Xero, CrowdStrike, monday.com, Amplitude, Similarweb, Wistia and Webflow, none of them obscure. The pattern is dull but worth saying out loud: our earlier sweep looked for docs at predictable addresses, and vendors do not keep them there. Xero's sits at /ai, CrowdStrike's at /falcon-mcp/. If you have been keeping your own list this way, it is probably short for the same reason.
Three things we found and deliberately did not count. A docs-search endpoint at
docs.vendor.com/mcp is not a product server — it answers questions about the manual, and several vendors
ship one. A blog post explaining MCP is not a server. And Zendesk is the interesting case: the "MCP Server" in their
marketplace is built by Swifteq, a third party, while Zendesk's own MCP work is a client — it connects
Zendesk out to other people's servers. That is the opposite direction, so it does not belong in this list.
Update, 1 Sep 2026 — one column filled in, five doc pages moved, eight servers added. Jotform now
answers the question on their own developer page: "Is the MCP free? Yes, the MCP server is available at no
additional charge." They move out of the silent column. Five source links had moved and are updated —
Descript, Softr, Envoy and Todoist redirected, and Clay's developer docs dropped their MCP page altogether,
so we now cite the documentation on their own university site. Eight partners added to our database since the
last sweep document a first-party server: HubSpot, Rippling, RocketReach, Bitscale, Castmagic, Zendrop, Gixo
and StoreSEO. Five more we left out on the same rule as before. Attribuly's own page says the server is
"currently in development" with a waitlist, so there is nothing to check yet. Datarails writes about MCP for
finance but ships no server of their own. PartnerStack has a glossary entry. BackupMaster's /mcp
is a docs-search endpoint. And Intelis, Dondy and one Shopify app expose a Wix site MCP — that is Wix's
platform endpoint on their marketing site, not something the vendor built.
An honest guide has to include the part the launch posts leave out.
"Has an MCP server" says nothing about quality. The gap between servers is enormous — a handful of well-described tools that return readable text versus 200 auto-generated endpoints that flood the context window. Tool count is a marketing number, not a quality signal. Bybit ships 206 tools; that is impressive engineering and also a lot of surface area for a model to get lost in.
Beta means beta. 12 of the servers here are labelled beta, early access or "under active development" by the vendors themselves. Plesk's own announcement says to expect bugs and not to use it in production. That is admirable candour, and you should take it literally.
Permissions are inherited, not designed. A server usually gives the model whatever the authenticated user can already do. That is the right default, but it means an over-permissioned account becomes an over-permissioned agent. Gusto's advice to run its server in an isolated session — away from other MCP servers — is the sanest security note any vendor in this list publishes, and it applies well beyond Gusto.
Read is solved; write is not. Most of the value shipped so far is retrieval. Navan is read-only with writes "coming"; Gusto is read-only by design; ClickUp won't delete. The genuinely agentic use cases are still early, and the vendors being cautious are, we think, the ones getting it right.
MCP (Model Context Protocol) is an open standard for connecting an AI assistant to a tool or data source. The AI app is the client, the tool ships a server, and the two speak one protocol. It means a tool builds one integration instead of one per AI app, and you can plug your own data into the assistant you already use.
The protocol itself is open and free. Whether a vendor's MCP server is free depends on the vendor. Of the 74 partner servers we checked, 32 state a plan or price in their own docs and 42 say nothing at all. Where a plan is stated, the MCP server is usually included with the subscription you already pay for rather than sold separately — the real limits are rate limits and whether writes are allowed.
Increasingly no. Remote servers are the norm now: you paste a URL into your AI client, approve an OAuth screen, and you're connected. Local servers still need a runtime — our own is a single Python file — but the setup is a copy-paste, not a project.
Treat it like any other integration: it inherits your permissions, so scope it. Several partners are deliberately conservative — Gusto's server is read-only, Navan's is read-only for now, ClickUp refuses delete operations, and Circle requires per-action approval for writes. Gusto also advises running its server in an isolated client session rather than alongside other MCP servers.
We publish one: the Honest Atlas MCP, a free server that gives any MCP client our hand-researched dossiers on 300 SaaS and AI tools — real pricing notes, the honest knock, who should skip it. It runs on your machine, needs no account and has zero dependencies.
How this page was made: we checked all 425 tools in our partner database against their own documentation — first on 2026-07-28, most recently on 2026-09-04 — and cite the vendor page for every claim. Plan and price wording is theirs, not ours; "not stated" means we could not find it published on their own site. Illustrations are our own SVGs; partner logos are hosted on our own servers, not hotlinked. Some links are affiliate links — we may earn a commission if you sign up, at no extra cost to you, and it never changes what we write: a tool that is gated or expensive gets said so on this page. Review content lives in our dossiers, which this page links to rather than repeats. How we review →
New dossiers, cost-traps we found, and what actually changed in AI tooling — no hype, no sponsored-disguised-as-advice. Unsubscribe anytime.