SynchronexBack to synchronex.ai
Docs
Synchronex

Getting Started

OverviewQuickstartAuthentication

Core Concepts

Identity KernelMemoryDecisions FeedAI WorkersWorkspaces / Teams

Integration

REST APIMCP ServerMCP ToolsCloud Developer ModeOAuthSendinelBYOK

Reference

API ReferenceChangelog

Getting Started

Quickstart

Create an account, generate a key, read memory, write a decision, and connect an MCP client.

5 min read

1. Create an Account

Create an account at synchronex.ai, then complete onboarding so your Identity Kernel exists.

bash
# Open https://synchronex.ai/sign-in and complete onboarding

2. Generate an API Key

Open /settings/mcp, create a key, and copy the sx_live_* value once.

bash
export SYNCHRONEX_API_KEY="sx_live_YOUR_KEY"
ts
const SYNCHRONEX_API_KEY = process.env.SYNCHRONEX_API_KEY!

3. Read Your Identity Kernel

bash
curl https://synchronex.ai/api/v1/memory/identity \
  -H "Authorization: Bearer $SYNCHRONEX_API_KEY"
ts
const res = await fetch('https://synchronex.ai/api/v1/memory/identity', {
  headers: { Authorization: `Bearer ${SYNCHRONEX_API_KEY}` },
})
console.log(await res.json())

4. Write Your First Decision

bash
curl https://synchronex.ai/api/v1/memory/decisions \
  -X POST \
  -H "Authorization: Bearer $SYNCHRONEX_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"product_name":"Synchronex","decision":"Use MCP as the primary integration path","reasoning":"It gives AI clients native tool access."}'
ts
await fetch('https://synchronex.ai/api/v1/memory/decisions', {
  method: 'POST',
  headers: {
    Authorization: `Bearer ${SYNCHRONEX_API_KEY}`,
    'Content-Type': 'application/json',
  },
  body: JSON.stringify({
    product_name: 'Synchronex',
    decision: 'Use MCP as the primary integration path',
    reasoning: 'It gives AI clients native tool access.',
  }),
})

5. Connect an MCP Client

json
{
  "mcpServers": {
    "synchronex": {
      "type": "http",
      "url": "https://synchronex.ai/api/mcp",
      "headers": { "Authorization": "Bearer sx_live_YOUR_KEY" }
    }
  }
}

Pro tip: Wispr Flow converts voice to text across any app, including Synchronex sessions. Use it for voice input without adding speech features to Synchronex.

Next: read the MCP guide and memory concepts.

Read the full guide →