Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.sequentum.com/llms.txt

Use this file to discover all available pages before exploring further.

The Sequentum MCP server lives at:
https://mcp.sequentum.com/mcp
HTTP transport with OAuth 2.0. Open-source self-host alternative at github.com/Sequentum/sequentum-mcp for environments that can’t reach the hosted endpoint.

In your data pipeline

The primary path. Your Python service or other automation calls Claude (via the Anthropic API) with the Sequentum MCP server attached — the model picks the right agent, runs it, and your pipeline gets structured records without writing a separate REST integration.
import anthropic

client = anthropic.Anthropic()

response = client.messages.create(
    model="claude-opus-4-7",
    max_tokens=8192,
    mcp_servers=[{
        "type": "url",
        "url": "https://mcp.sequentum.com/mcp",
        "name": "sequentum",
        "authorization_token": "<oauth_access_token>",
    }],
    messages=[{
        "role": "user",
        "content": "Run my product-pricing agent and return today's records.",
    }],
)
The authorization_token is an OAuth 2.0 access token issued by Sequentum’s authorization server. Mint one out-of-band with any standard OAuth client library, or proxy through your own user-OAuth flow if your pipeline runs per-user.

From an automation platform

n8n, Zapier, AWS Step Functions, and other platforms with MCP support: drop https://mcp.sequentum.com/mcp into their MCP integration screen and complete the OAuth flow. The server appears as a tool source for any LLM step in the workflow.

From Claude Desktop

For analysts driving Sequentum interactively — “pull today’s pricing data,” “show me yesterday’s failed runs.”
  1. Open Settings → Connectors.
  2. Click Add custom connector.
  3. Paste https://mcp.sequentum.com/mcp as the URL.
  4. Sign in when prompted.
Free Claude plans support one custom connector at a time. Team and Enterprise plans support multiple but require admin enablement first.

Self-hosted

For air-gapped pipelines or on-prem data lakes that can’t reach mcp.sequentum.com. Open source (MIT) at github.com/Sequentum/sequentum-mcp. Requires Node 18+. Generate a Sequentum API key from Control Center → Users → Manage API keys — keys start with sk-.
{
  "mcpServers": {
    "sequentum": {
      "command": "npx",
      "args": ["-y", "sequentum-mcp"],
      "env": {
        "SEQUENTUM_API_KEY": "sk-..."
      }
    }
  }
}
This block drops into Claude Desktop, n8n’s MCP integration, or any other MCP-aware client config the same way the hosted URL would.

Dev tools

Useful for prototyping pipeline logic from your editor. Not the production path.
  • Cursor v1.0+one-click install or paste https://mcp.sequentum.com/mcp into Cursor’s MCP settings.
  • Claude Codeclaude mcp add --transport http sequentum https://mcp.sequentum.com/mcp.

Troubleshooting

Usually a popup-blocker. Re-trigger the connect flow with popups enabled, or copy the callback URL from the client logs and complete the exchange manually.
Sequentum’s standard API rate limits apply (100 requests / 60-second window per identity). Long-running tool loops in the calling LLM can trip this — your client should respect Retry-After. See Errors.
Check the platform supports MCP HTTP transport. The OAuth grant may also have lapsed — reconnect from the platform’s MCP settings.