ENDPOINT 1
https://obriym-crm.com/api/mcp
MCP server metadata
- Name
- obriym-crm
- Version
- 1.4.2
An Obriym CRM user can belong to MULTIPLE workspaces (isolated businesses). Every tool operates exactly one workspace — the one this connection is bound to. Nothing in a tool payload can change that. Sign-in (OAuth) connections of a user with several workspaces start LOCKED: every data tool first asks the client to show a workspace selection form when supported; otherwise it returns WORKSPACE_SELECTION_REQUIRED with the workspace list in structured content. Never choose a workspace for the user yourself. After the user selects a workspace, call select_workspace with that organization id, then retry the user's original CRM request. Before creating or changing data in a session, verify the bound workspace with get_workspace_info and tell the user which workspace you are operating. Sign-in (OAuth) connections: use list_workspaces to see the user's workspaces and select_workspace to re-bind this connection when the user asks to work in another workspace. API-token connections are permanently fixed to the workspace that issued the token — to work in another workspace, use a token created there. Every write-tool result echoes the workspace it landed in — repeat it to the user when confirming an action.
Known tools 52
search_leadsList and search this workspace's leads, filtered by text/status/source/created-date/stale and paginated.
Inferred read-onlyget_leadFetch one CRM lead in the selected workspace by lead id, including status, source, assignee, tags, custom fields, score, notes and next action.
Inferred read-onlysearch_dealsList and search pipeline deals, filtered by stage/owner/company/contact/stale and paginated.
Inferred read-onlyget_dealFetch one pipeline deal in the selected workspace by deal id, including stage, value, probability and linked company/contact data when present.
Inferred read-onlylist_ordersList this workspace's orders, filtered by status/customer/created-date and paginated.
Inferred read-onlyget_orderFetch full order detail in the selected workspace by externalId, including line items, payments, shipments and returns.
Inferred read-onlysearch_productsList and search active catalog products, filtered by category/brand/price/stock/tag/type and paginated.
Inferred read-onlyget_productFetch one catalog product in the selected workspace by product id or SKU — returned in any status (draft, active, or archived; check the status field), including price, stock, category and brand fields.
Inferred read-onlyget_dashboard_overviewReturn the operational 'what needs attention today' snapshot for this workspace: active/qualified/stale lead counts, pipeline value, weighted forecast and overdue activities.
Inferred read-onlyget_reportReturn one aggregated analytics report over a period for this workspace, selected by the report parameter: lead_source_conversion, pipeline_velocity, team_performance, or revenue_trend.
Inferred read-onlysearch_contactsList and search this workspace's contacts, filtered by company/owner/tag, sorted and paginated.
Inferred read-onlyget_contactFetch one CRM contact in the selected workspace by contact id, including company, owner, tags and communication fields when present.
Inferred read-onlysearch_companiesList and search this workspace's companies, filtered by industry/status/owner, sorted and paginated.
Inferred read-onlyget_companyFetch one CRM company in the selected workspace by company id, including status, industry, owner and contact links when present.
Inferred read-onlylist_activitiesList this workspace's activities (tasks, calls, meetings, emails, notes), filtered by type/assignee/overdue/completion/linked-entity and paginated.
Inferred read-onlyget_activityFetch one CRM activity in the selected workspace by activity id, including type, due date, completion state, assignee and linked entity.
Inferred read-onlylist_customersList CRM customers (companies with a won deal or delivered order), filtered by health/lifetime-value/won-deal count, sorted and paginated.
Inferred read-onlyget_customerFetch one CRM customer summary in the selected workspace by company id, including health, lifetime value and won-deal metrics.
Inferred read-onlylist_categoriesList this workspace catalog categories as a flat array, each with id, name, slug and parentId (null for a root category).
Inferred read-onlylist_brandsList this workspace catalog brands with id, name, description and website.
Inferred read-onlylist_marketplacesList every marketplace connected to this workspace with its setup state, health, last activity, any current sync error, orders revenue per currency, leads, product counts on the channel and how many imported products are waiting to be reviewed.
Inferred read-onlyget_marketplaceFetch one connected marketplace in detail: every adapter on it with its setup state, last poll, last poll error, last catalog-sync outcome and last product import, plus the channel sales, leads and product counts.
Inferred read-onlylist_channel_productsList the products that are on one marketplace, with each listing external id, what the marketplace last reported about it (`presence`, valid only when `observedAt` is set — null `observedAt` means the marketplace has never been asked about that listing, not that it is absent; Prom is reconciled every 15 minutes, other channels only when a sync or publish runs), whether the workspace paused syncing it, its price and stock.
Potential side effectscheck_channel_readinessCheck locally which products a marketplace will refuse and why — missing price, unusable price, blank name, unmapped category — grouped by what fixes them, without calling the marketplace.
Inferred read-onlyget_workspace_infoShow which account and workspace this connection operates: signed-in name/email (OAuth only), workspace name, plan, connection type, and granted scopes.
Potential side effectscomplete_activityMark an activity (task, call, or meeting) as completed by its id.
Inferred read-onlyconvert_leadConvert a lead into a contact, company, and/or deal (select at least one via the input flags).
Inferred read-onlyassign_leadAssign a lead to a workspace member by user id, or pass assignedTo=null to unassign.
Inferred read-onlyupdate_order_itemUpdate a line item on an order (quantity, unit price, discount, name, or SKU).
Potential side effectsupdate_productUpdate fields on an existing catalog product by id — including status, to publish a draft or archive a product.
Potential side effectsadjust_stockMove a product stock by a relative delta (negative to write off, positive to add) with a reason, and record it in the stock history.
Potential side effectslist_pipeline_stagesList this workspace's pipeline stages in order, with each stage's id, name, kind, default probability, WIP limit and position.
Inferred read-onlyconfigure_pipelineUpdate an existing pipeline stage's name, default probability, or WIP limit.
Potential side effectslist_lead_sourcesList this workspace's lead sources (built-in plus custom), with each source's key, label and active state.
Inferred read-onlyset_lead_sourcesCreate or update a workspace lead source: set its label and active state by key (built-in or custom, lowercase_with_underscores).
Potential side effectslist_workspacesList every workspace the connected user belongs to (id, name, role) and mark which one this connection currently operates.
Inferred read-onlyselect_workspaceRe-bind this OAuth connection to the workspace selected by the user.
Inferred read-onlyCONNECT WITH APPROVAL
Client installation
Review this server and its permissions before adding it. Secret placeholders must be set locally.
Codex
~/.codex/config.toml
[mcp_servers.obriym-crm]
url = "https://obriym-crm.com/api/mcp"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"obriym-crm": {
"type": "http",
"url": "https://obriym-crm.com/api/mcp"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: obriym-crm
Remote MCP URL: https://obriym-crm.com/api/mcp
Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.
Cursor
.cursor/mcp.json
{
"mcpServers": {
"obriym-crm": {
"url": "https://obriym-crm.com/api/mcp"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"obriym-crm": {
"type": "http",
"url": "https://obriym-crm.com/api/mcp"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "obriym-crm",
"transport": "streamable-http",
"url": "https://obriym-crm.com/api/mcp"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
TRUST AND VERIFICATION EVIDENCE
Trust Data Available
BuiltWith Trust API v2 evidence for obriym-crm.com was fetched 2026-08-04T03:53:37.856Z and is being refreshed.
obriym-crm.com is assessed as Neutral: No suspicious signals found, but no strong positive signal either
Evidence is source-attributed and does not guarantee that a third-party server is safe. Risk labels are conservative metadata heuristics.