MCP server 2.0
MCP server 2.0 is a breaking release. If you connect to
https://mcp.sequentum.com/mcp, check each item below.Transport and runtime- Node 20 is the minimum runtime for the deprecated local stdio path (see Connect). Node 18 fails at install.
- The HTTP transport is stateless.
Mcp-Session-Idis ignored entirely — there is no per-client session state.GET /mcpno longer opens an SSE stream; it returns405 Method Not Allowed(or401first, with the RFC 9728WWW-Authenticatechallenge, if unauthenticated).DELETE /mcpis a no-op that always answers200. MAX_SESSIONSis no longer read. Remove it from any deployment configuration.Mcp-Methodis required on requests carrying the2026-07-28_metaenvelope, andMcp-Nameon name-carrying requests (tools/call,prompts/get, andresources/read). Clients on2025-11-25or earlier — including every existing connector that hasn’t opted into the envelope — are unaffected and need send neither.
- Rate-limit error code changed from
-32029to-32010. MCP2026-07-28reserves-32020..-32099for the specification itself. - An unknown tool name is now a protocol error, not a tool result.
tools/callwith an unrecognized name previously returned HTTP 200 with{result: {content: [...], isError: true}}; it now returns{error: {code: -32602, message: "Tool X not found"}}. If you branched onisErrorto detect an unknown tool, handle the JSON-RPC error instead. - Schema-invalid tool arguments now fail before the handler runs, with different message text. A missing required parameter previously produced
Error: Invalid parameter 'agentId': ...and now producesInput validation error: Invalid arguments for tool get_agent: data must have required property 'agentId'. - Unknown or invalid resource URIs return
-32602(invalid params) instead of-32603(internal error).
get_agent_runsandsearch_agentsnow return an object instead of a bare array.get_agent_runsreturns{ runs, returned, limit, truncated }andsearch_agentsreturns{ agents, returned, limit, truncated }, each with an extranotewhen the page came back full. The list itself is unchanged, but if you read the result as an array, readrunsoragentsfrom it instead. The wrapper is what makes a capped page distinguishable from a complete one.
- Four exact-count tools answer “how many” without counting a capped list:
get_agent_run_summary(overall plus per-status run totals for an agent),get_agent_search_count,get_space_agent_count, andget_personal_agent_count. See Tools.
/.well-known/oauth-authorization-serverno longer returns a metadata document. It answers302with aLocationpointing at the authorization server’s own document. Clients that follow redirects are unaffected; a client that read the body without following the redirect must now follow it, or readauthorization_serversfrom/.well-known/oauth-protected-resource.
stdio transport and API-key auth deprecated for MCP
- The stdio transport and
SEQUENTUM_API_KEYauthentication for the MCP server are deprecated and will be removed in a future release. Connect tohttps://mcp.sequentum.com/mcpover HTTP with OAuth 2.1 — see Connect. - The
sequentum-mcpnpm package is deprecated. Existing installs keep working. - There is no supported self-hosted deployment. If you need Sequentum MCP somewhere that can’t reach
mcp.sequentum.com, contact support. - This applies to the MCP server only. Sequentum API keys remain fully supported for the REST API.
Docs site overhaul
- New Mintlify-based documentation site at
docs.sequentum.com(replaces the old Confluence). - Information architecture rebuilt around Agent Builder and an API-first reference.
- Migrated extraction-command reference content from the legacy Cloud Manual.
Agent Builder GA
- Agent Builder is generally available. Build extraction agents from a single prompt.
- New API surface under
/api/v1/agent-builderfor programmatic session control.