Build, reuse, share.

Define workflows where complex tasks are broken into smaller steps, making them easier for AI to execute and helping users get the desired result in one shot.

The platform is powered by an MCP server, so it can be used with GPT, Codex, Claude, and other LLM providers.

Usage

Start & Token Creation

  • 1. Log in -> Create New User
  • 2. Complete registration
  • 3. Go to settings (icon) -> Workflow List -> view
  • 4. Click the 'Set as Active Workflow' button
  • 5. Go to Settings -> MCP Token
  • 6. Click the 'Create Token' button and copy the token

Claude Code Configuration

  • Run the command:
    claude mcp add context-chain --transport http https://context-chain.com/mcp --header "Authorization: Bearer <TOKEN>"

Codex CLI configuration

  • 1. Open the file ~/.codex/config.toml
  • 2. Insert these lines:
    [mcp_servers.context-chain]
    url = "https://context-chain.com/mcp"
    http_headers = {Authorization = "Bearer <TOKEN>"}
    enabled = true

Usage Example

  • * Ask llm to complete some task by using the mcp (run_context_chain)
  • a) review code (call mcp): {php class path}
  • b) prettify message (call mcp): {comment for client}
  • c) cover the class by unit test (call mcp): {php class path}