Key takeaways:
- Common Room’s MCP server is hosted at
https://mcp.commonroom.io/mcpand connects Claude, ChatGPT, Cursor and GitHub Copilot to your workspace over OAuth. - It reads and writes. Alongside querying contacts, organizations, activities and segments, an assistant can create new records and update existing ones.
- Access is gated by the platform, and Common Room’s entry plan is $2,500 a month billed annually, so this is an enterprise tool rather than something to try over a weekend.
- Setup is a directory install on Claude and ChatGPT, or a short HTTP block in
mcp.jsonfor Cursor and VS Code.
Common Room aggregates the scattered evidence that someone cares about you. A GitHub star, a Slack question, a LinkedIn comment, a docs visit, a pricing-page view, all resolved to a person and an account.
Its MCP server puts that evidence in the tool you already have open, and it lets you write back rather than only read, which not every vendor allows.
This review covers the server’s capabilities, the setup path for each client, what the platform underneath actually costs, and where the limits sit. Outbound execution is our own patch, and we maintain an MCP server for it, so the handoff from signal to sequence is what we care about here.
What Common Room MCP Is
Common Room MCP is a hosted server implementing the Model Context Protocol, the open standard for connecting AI assistants to external systems. It exposes go-to-market data: product signals, community activity, intent data and contact enrichment.
The server address is https://mcp.commonroom.io/mcp, and the prerequisites are short. You need a Common Room instance and an account with access to it.
The read-and-write design is the headline. Some vendors deliberately ship read-only servers, Salesloft’s being the clearest example, and Common Room went the other way: an assistant can query contacts, organizations, activities and segments, then create records and update existing ones from the same conversation.
That makes it useful and raises the stakes of a badly worded prompt. Writes are where an assistant can do something you did not intend, and it is worth knowing which side of the read-write line you are on before you connect anything.
Being a first-party server rather than a bridge matters more than it sounds. A general-purpose connector such as Zapier’s MCP can reach many tools through a common abstraction, but it cannot express an object model it does not know about. Common Room’s own server understands segments, activities and signals as first-class things, which is why the questions you can ask it are more specific.
Setting Up Common Room MCP
Common Room maintains directory listings for the major assistants and documents manual configuration for developer tools.
Claude
Claude has a first-party listing, so this takes three clicks and an authorization.
- Open Claude’s settings and go to Connectors → Manage.
- Install the Common Room connector.
- Complete the OAuth authorization flow to connect your account.
Common Room tools are then available immediately. If you use Claude for desktop in Cowork mode, Common Room publishes a separate setup guide covering a purpose-built plugin rather than the generic connector.
ChatGPT
Common Room is an official ChatGPT App, which makes this a one-click connection. Install it from the ChatGPT App Store, authorize with your account credentials, then enable the connector in a new chat through the + menu under More.
One naming note that causes confusion: ChatGPT renamed “Connectors” to “Apps” in December 2025, and the underlying functionality is unchanged. Older guides using the previous term are still describing the same thing.
Cursor
Open Settings → Tools & Integrations → MCP, click Add MCP Server, select HTTP as the transport, and enter the server URL. Complete the OAuth prompt and the tools appear in Agent and Composer.
You can also configure it directly in ~/.cursor/mcp.json:
{
"mcpServers": {
"common-room": {
"type": "http",
"url": "https://mcp.commonroom.io/mcp"
}
}
}
GitHub Copilot in VS Code
Open the Command Palette, run MCP: Open User Configuration, and add the server block:
{
"servers": {
"common-room": {
"type": "http",
"url": "https://mcp.commonroom.io/mcp"
}
}
}
Save the file and VS Code prompts you to trust the server. The tools then appear in Copilot Chat in Agent mode. To scope it to one project instead, put the same block in .vscode/mcp.json in the project root.
What the Connection Looks Like Underneath
Most people never need this, but it is worth knowing what an MCP client is doing on your behalf, because it explains the failure modes.
Connecting is a handshake rather than a single request. The client opens an HTTP connection, sends a JSON-RPC initialize message with its protocol version and client info, sends an initialized notification, then calls tools/list to discover what the server offers, including each tool’s JSON schema and its annotations. Only then does it call tools/call.
Two details from our own server are worth borrowing as a mental model. We advertise MCP protocol version 2025-06-18, and we require no Mcp-Session-Id, so initialize and tools/list work without establishing a session first. When a connection misbehaves, the useful question is almost always whether tools/list returned what you expected, because an assistant that cannot see a tool will confidently tell you the capability does not exist.
The write side deserves one more thought. HTTP has long-settled semantics here, and RFC 9110 defines an idempotent method as one where repeating the request has the same intended effect as making it once. Tool calls that create records are generally not idempotent, so an assistant that retries after a timeout can produce duplicates. Asking it to search before it creates is the cheap defense.
What Common Room Costs
The MCP server carries no separate price, and the platform underneath is the expense. Common Room publishes one figure and quotes the rest.
| Plan | Price | Seats | Contacts | Credits |
| Essential | $2,500 per month, billed annually | 5 | Up to 100,000 | 5,000 RoomieAI research, 2,500 Prospector |
| Advanced | Custom | 15 | Up to 250,000 | 7,500 RoomieAI research, 7,500 Prospector |
| Enterprise | Custom | 30 | Up to 750,000 | 10,000 RoomieAI research, 15,000 Prospector |
No tier can be bought without talking to someone, and Essential includes a shared customer success manager while the higher tiers include a dedicated one. Integration breadth also scales, with Enterprise the only tier described as comprehensive.
That $2,500 monthly floor is the single most important commercial fact in this review. It puts the entry point at $30,000 a year, which places Common Room and its MCP server firmly in the enterprise bracket regardless of how approachable the connector setup is.
Being clear about what that buys matters, because the comparison is not like for like. Common Room is a signal aggregation platform with an MCP server attached, not an MCP product, and the price reflects the ingestion, identity resolution and enrichment underneath. Teams comparing it against a sequencing platform’s feature set are comparing two different layers of the stack, and the honest answer is that most enterprise GTM teams end up paying for both.