# Send Maton MCP Tools to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "maton-agent-tools",
    "name": "Maton MCP Tools",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/maverick-software/maton-agent-tools",
    "canonicalUrl": "https://clawhub.ai/maverick-software/maton-agent-tools",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/maton-agent-tools",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=maton-agent-tools",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "reference/README.md",
      "reference/maton-controller.ts",
      "reference/maton-backend.ts",
      "reference/maton-views.ts"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/maton-agent-tools"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/maton-agent-tools",
    "downloadUrl": "https://openagent3.xyz/downloads/maton-agent-tools",
    "agentUrl": "https://openagent3.xyz/skills/maton-agent-tools/agent",
    "manifestUrl": "https://openagent3.xyz/skills/maton-agent-tools/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/maton-agent-tools/agent.md"
  }
}
```
## Documentation

### Maton AI

Connect your AI agent to SaaS tools via Maton's OAuth connection management. This skill provides:

Full UI Dashboard — Configure API key, view connections, initiate OAuth flows
Multi-App Support — Gmail, Slack, Notion, HubSpot, Jira, Google Workspace, and more
Connection Management — Create, monitor, and delete app connections
API Keys Integration — Maton API key appears in the API Keys tab for easy configuration

### Overview

Maton provides a unified API for connecting to SaaS tools via OAuth. Once connected, you can interact with these tools through Maton's AI capabilities or directly via their API.

### Prerequisites

Maton Account — Sign up at maton.ai
API Key — Get your API key from the Maton dashboard
Clawdbot Gateway — v2026.1.0 or later with UI enabled

### Step 1: Get Your API Key

Go to maton.ai and sign in
Navigate to Settings → API Keys
Create or copy your API key

### Step 2: Configure in Clawdbot UI

Option A: Via API Keys tab

Open Clawdbot Dashboard → Settings → API Keys
Find "Maton" in the Environment Keys section
Enter your API key and click Save

Option B: Via Maton tab

Open Clawdbot Dashboard → Tools → Maton
Click Configure
Paste your API key
Click Save

### Step 3: Connect Apps

Go to Tools → Maton
Click Connect App and select an app (e.g., Gmail, Slack)
Complete the OAuth flow in the popup window
Once status shows ACTIVE, the connection is ready

### Supported Apps

Maton supports 50+ SaaS applications including:

CategoryAppsGoogle WorkspaceGmail, Calendar, Docs, Sheets, Drive, Slides, Ads, AnalyticsProductivityNotion, Airtable, Jira, CalendlyCommunicationSlack, OutlookCRMHubSpot, ApolloMediaYouTube

### Base URL

https://ctrl.maton.ai

### Authentication

All requests require a Bearer token:

curl https://ctrl.maton.ai/connections \\
  -H "Authorization: Bearer YOUR_API_KEY"

### Endpoints

MethodEndpointDescriptionGET/connectionsList all connectionsPOST/connectionsCreate new connectionGET/connections/{id}Get connection detailsDELETE/connections/{id}Delete connection

### Connection Status

StatusDescriptionPENDINGOAuth flow not completed; url contains OAuth linkACTIVEConnection established and ready to useFAILEDConnection failed; reconnection required

### Configuration Storage

The Maton API key is stored in the main Clawdbot config file:

{
  "env": {
    "MATON_API_KEY": "your-api-key-here"
  }
}

This integrates with the API Keys tab for centralized key management.

### Backend RPC Methods

MethodPurposematon.statusGet API key status and connection countmaton.saveValidate and store API keymaton.testTest the API keymaton.disconnectRemove API keymaton.connectionsList all connectionsmaton.connectCreate a new connection (returns OAuth URL)maton.deleteDelete a connectionmaton.appsList supported apps

### UI Components

FilePurposematon-backend.tsGateway RPC handlersmaton-controller.tsUI state managementmaton-views.tsLit HTML templates

### Installation

See reference/README.md for detailed integration instructions.

### Quick Integration

Copy backend handler to src/gateway/server-methods/maton.ts
Copy UI files to ui/src/ui/views/ and ui/src/ui/controllers/
Add "maton" tab to navigation
Add MATON_API_KEY to API keys discovery
Rebuild and restart

### Maton Tab (Tools → Maton)

Connection status with active/pending counts
API key configuration form
Connected apps list with status badges
App picker modal for new connections
One-click OAuth flow initiation

### API Keys Tab Integration

Shows "Maton" in Environment Keys section
Direct input field for API key
Save/Clear functionality

### Security

AspectImplementationKey StorageMain config file (~/.clawdbot/clawdbot.json)Key AccessNever exposed to AI agentOAuth TokensManaged by Maton (automatic refresh)

Best practices:

Rotate API keys periodically
Review connected apps regularly
Disconnect unused connections

### "Unauthorized" error

Verify your API key is correct
Check that the key hasn't been revoked
Regenerate in Maton dashboard if needed

### Connection stuck in PENDING

OAuth flow wasn't completed
Try the OAuth URL again
Delete and recreate if URL expired

### Connection shows FAILED

OAuth token may have expired
Delete the connection and create new one

### Maton not in API Keys tab

Ensure you're on Clawdbot v2026.1.0+
Refresh the page after gateway restart

### Reference Files

reference/maton-backend.ts — Gateway RPC handlers
reference/maton-controller.ts — UI controller logic
reference/maton-views.ts — UI rendering (Lit)
reference/README.md — Installation guide

### Support

Maton: maton.ai
ClawdHub: clawdhub.com/skills/maton
Discord: discord.com/invite/clawd
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: maverick-software
- Version: 1.0.0
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-30T16:55:25.780Z
- Expires at: 2026-05-07T16:55:25.780Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/maton-agent-tools)
- [Send to Agent page](https://openagent3.xyz/skills/maton-agent-tools/agent)
- [JSON manifest](https://openagent3.xyz/skills/maton-agent-tools/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/maton-agent-tools/agent.md)
- [Download page](https://openagent3.xyz/downloads/maton-agent-tools)