Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
ad83676
feat(docs): fill documentation gaps across platform features
waleedlatif1 Apr 11, 2026
a0b35f5
fix(docs): address PR review comments on chat OTP cookies and MCP env…
waleedlatif1 Apr 11, 2026
6f3d1ad
fix(docs): replace smart quotes with straight quotes in JSX attributes
waleedlatif1 Apr 11, 2026
5fbfa11
update(docs): update mcp, custom tools, and variables docs
TheodoreSpeaks Apr 16, 2026
c0de014
Fix grammar
TheodoreSpeaks Apr 16, 2026
99a1ac0
Merge branch 'doc/update-mcp' into waleedlatif1/docs-gap-audit
TheodoreSpeaks Apr 16, 2026
1c334aa
mothership docs, tags, connectors, api, chat deploy, etc
waleedlatif1 Apr 16, 2026
924faf1
more info
waleedlatif1 Apr 16, 2026
87d346e
more
waleedlatif1 Apr 16, 2026
927a693
feat(docs): auto-generate per-provider trigger documentation
waleedlatif1 Apr 16, 2026
9f07102
refactor(docs): align trigger docs structure with tools docs
waleedlatif1 Apr 16, 2026
b11ee34
refactor(docs): use human-readable names for trigger section headings
waleedlatif1 Apr 16, 2026
35beb7e
fix(docs): resolve subBlock builder functions for all trigger Config …
waleedlatif1 Apr 16, 2026
be23128
fix(docs): correctly destructure nested implicit-object trigger outputs
waleedlatif1 Apr 16, 2026
6a937f1
chore(docs): update static trigger and start page images
waleedlatif1 Apr 16, 2026
9473851
feat(providers): add claude-opus-4-7 model with adaptive thinking sup…
waleedlatif1 Apr 16, 2026
0680d3e
Add workflow version screenshots
TheodoreSpeaks Apr 16, 2026
24387e7
Add function block screenshots
TheodoreSpeaks Apr 16, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix(docs): address PR review comments on chat OTP cookies and MCP env…
… var placeholders
  • Loading branch information
waleedlatif1 committed Apr 11, 2026
commit a0b35f586207d18659935272203c51616ac062a6
7 changes: 4 additions & 3 deletions apps/docs/content/docs/en/execution/chat.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -143,15 +143,16 @@ curl -X POST https://sim.ai/api/chat/your-identifier/otp \
-H "Content-Type: application/json" \
-d '{ "email": "allowed@example.com" }'

# Step 2: Verify OTP
# Step 2: Verify OTP (save the Set-Cookie header to a cookie jar)
curl -X PUT https://sim.ai/api/chat/your-identifier/otp \
-H "Content-Type: application/json" \
-c cookies.txt \
-d '{ "email": "allowed@example.com", "otp": "123456" }'

# Step 3: Send messages (include the auth cookie from step 2)
# Step 3: Send messages (replay the auth cookie from step 2)
curl -X POST https://sim.ai/api/chat/your-identifier \
-H "Content-Type: application/json" \
-b "chat_auth_cookie" \
-b cookies.txt \
-d '{ "input": "Hello" }'
```

Expand Down
4 changes: 4 additions & 0 deletions apps/docs/content/docs/en/mcp/deploy-workflows.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,10 @@ Add to your VS Code MCP settings (`.vscode/mcp.json`):
For public servers, omit the `X-API-Key` header and `--header` arguments. Public servers don't require authentication.
</Callout>

<Callout type="warn">
`$SIM_API_KEY` is a placeholder. For Claude Desktop and VS Code configs, replace it with your actual API key since these clients don't expand environment variables in JSON config files. Claude Code and Cursor handle variable expansion natively.
</Callout>

## Server Management

From the server detail view in **Settings → Workflow MCP Servers**, you can:
Expand Down
Loading