Weavz
Add Weavz to your AI client

Try Weavz from the AI client you already use.

Add one Weavz connector URL, sign in or create an account inside the authorization flow, choose a workspace, and let the agent use approved app actions with scoped credentials, files, state, approvals, and audit.

Try in Claude

You can start from the connector flow first; Weavz creates or signs in the account during authorization.

Connector details

Connect ChatGPT, Claude, or a coding agent to a Weavz workspace. The workspace decides which apps, credentials, files, state, browser tools, and approvals the agent can use.

ChatGPT
Claude
Coding agents
Weavz workspace
scoped tools, users, approvals, state, and audit
Connected apps
Connector name
Weavz Agent Workspace
Connector URL
https://platform.weavz.io/mcp/weavz
No Weavz account required before setup; the connector signs the user in during authorization.
One hosted MCP URL works in Claude, ChatGPT, and remote-MCP clients.
Access is scoped to one workspace and one end user after OAuth.
Connected app accounts stay behind Weavz approvals, aliases, state, files, and audit.
Setup paths

Start from the client in front of you.

What happens next

The connector is just the door. The workspace carries the control.

Choose the workspace

Weavz scopes the connector token to one workspace and one end user.

Connect apps as yourself

Gmail, Slack, GitHub, Sheets, CRM, files, state, browser, and other aliases stay tied to the right user.

Review risky actions

Human Gates can pause external sends, shared writes, exports, spend, and customer-facing changes.

Coding agents

Use the same remote MCP resource from code-first clients.

For clients that accept HTTP MCP servers, add the stable Weavz connector URL and complete the Weavz login. Builders can also create workspace-specific servers and per-user tokens from the API, SDKs, or CLI when they need a custom harness.

Claude Code
claude mcp add --transport http weavz https://platform.weavz.io/mcp/weavz
Codex CLI
codex mcp add weavz --url https://platform.weavz.io/mcp/weavz
codex mcp login weavz
Cursor / generic MCP config
{
  "mcpServers": {
    "weavz": {
      "type": "http",
      "url": "https://platform.weavz.io/mcp/weavz"
    }
  }
}
Gemini CLI
gemini mcp add --transport http weavz https://platform.weavz.io/mcp/weavz
OpenCode
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "weavz": {
      "type": "remote",
      "url": "https://platform.weavz.io/mcp/weavz",
      "enabled": true
    }
  }
}
VS Code / Copilot
{
  "servers": {
    "weavz": {
      "type": "http",
      "url": "https://platform.weavz.io/mcp/weavz"
    }
  }
}