Connecting Dwizi Tools Anywhere
Dwizi tools are callable capabilities exposed through standard interfaces. This allows them to work across AI clients, automation platforms, and APIs.
Once connected, tools can be discovered, invoked, and governed consistently.
AI Clients (MCP)
These clients connect using Model Context Protocol (MCP). After setup, all tools in your Dwizi workspace become available automatically.
Cursor
- Open Settings → MCP.
- Add a new MCP server.
- Paste the Dwizi MCP JSON configuration.
- Save.
Cursor will immediately discover all available tools.
Claude Desktop
- Open Settings → Model Context Protocol.
- Add a custom MCP server.
- Paste the Dwizi MCP JSON configuration.
- Save and restart if prompted.
Claude can now invoke Dwizi tools during conversations.
Continue.dev
- Open
~/.continue/config.json. - Add a new MCP server entry using the Dwizi JSON config.
- Save the file.
- Restart the Continue extension.
Dwizi tools appear as callable actions.
Cline (VS Code)
- Open the MCP Servers panel.
- Add a new server using the Dwizi JSON configuration.
- Save.
- Reload the workspace.
All tools in the connected organization become available.
Automation & Workflow Platforms (HTTP)
Dwizi tools are also exposed as HTTP endpoints, making them compatible with no-code and low-code platforms.
n8n
- Add an HTTP Request node.
- Set:
- Method:
POST - URL: Dwizi tool URL
- Method:
- Enable JSON body.
- Provide input payload.
- Include authentication token if the tool is private.
Dwizi tools can now be used in workflows, triggers, and scheduled jobs.
Make (Integromat)
- Add an HTTP → Make a request module.
- Set method to
POST. - Use the Dwizi tool URL.
- Provide JSON input.
- Add token if required.
Zapier
- Use Webhooks by Zapier.
- Choose POST.
- Set the request URL to the Dwizi tool endpoint.
- Provide JSON payload.
- Add token for private tools.
Pipedream
- Add an HTTP Request step.
- Use
POST. - Provide JSON input.
- Include token if required.
Dwizi tools work naturally inside event-driven workflows.
API & Debugging
curl
curl -X POST https://tool.dwizi.com/your-tool-id \
-H "Content-Type: application/json" \
-d '{
"input": {
"value": 42
},
"token": "YOUR_TOKEN_IF_REQUIRED"
}'
Postman
- Create a new POST request.
- Set the tool URL.
- Add header: Content-Type: application/json.
- Provide JSON body.
- Include token if private.
Useful for debugging, testing, and CI pipelines.
Execution Model
Client / Workflow → Interface (MCP / HTTP) → Dwizi Tool → Isolated Runtime
Dwizi ensures:
- Isolation per execution
- Deterministic inputs/outputs
- Secure lifecycle management
Security Notes
- Private tools require tokens
- Tokens can be rotated or revoked
- Public tools require no credentials
- No shared execution state
Next Steps
Copy-Paste Configuration Snippets
MCP JSON (Generic)
{
"name": "dwizi",
"transport": {
"type": "http",
"url": "https://mcp.dwizi.com/YOUR_ORG_ID"
},
"auth": {
"type": "bearer",
"token": "YOUR_TOKEN"
}
}
Use this config in Cursor, Claude Desktop, Continue, or Cline.
HTTP Tool Invocation (Generic)
{
"input": {
"example": "value"
},
"token": "YOUR_TOKEN_IF_REQUIRED"
}