# Send KVcore MCP CLI 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": "kvcore-mcp-cli",
    "name": "KVcore MCP CLI",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/danielfoch/kvcore-mcp-cli",
    "canonicalUrl": "https://clawhub.ai/danielfoch/kvcore-mcp-cli",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/kvcore-mcp-cli",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=kvcore-mcp-cli",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "kvcore-mcp-cli",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-04T16:23:37.681Z",
      "expiresAt": "2026-05-11T16:23:37.681Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=kvcore-mcp-cli",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=kvcore-mcp-cli",
        "contentDisposition": "attachment; filename=\"kvcore-mcp-cli-0.1.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "kvcore-mcp-cli"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/kvcore-mcp-cli"
    },
    "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/kvcore-mcp-cli",
    "downloadUrl": "https://openagent3.xyz/downloads/kvcore-mcp-cli",
    "agentUrl": "https://openagent3.xyz/skills/kvcore-mcp-cli/agent",
    "manifestUrl": "https://openagent3.xyz/skills/kvcore-mcp-cli/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/kvcore-mcp-cli/agent.md"
  }
}
```
## Documentation

### KVcore MCP/CLI Skill

Use this skill for KVcore CRM operations from chat interfaces.

### Environment

Required:

KVCORE_API_TOKEN

Optional:

KVCORE_BASE_URL (default https://api.kvcore.com)
KVCORE_TIMEOUT_MS
TWILIO_ACCOUNT_SID, TWILIO_AUTH_TOKEN, TWILIO_FROM_NUMBER

### MCP Server

Start with:

npm run dev:kvcore-mcp

Primary tools:

kvcore_contact_search, kvcore_contact_get, kvcore_contact_create, kvcore_contact_update
kvcore_contact_tag_add, kvcore_contact_tag_remove
kvcore_note_add
kvcore_call_log, kvcore_call_schedule
kvcore_email_send, kvcore_text_send
kvcore_user_tasks, kvcore_user_calls
kvcore_campaigns_refresh
kvcore_request (raw endpoint access)
twilio_call_create (fallback outbound call)

### CLI

Build:

npm run build

Examples:

node packages/kvcore-cli/dist/index.js contact search --query "john smith" --pretty
node packages/kvcore-cli/dist/index.js email:send --contact-id 123 --subject "Quick update" --body "Following up" --pretty
node packages/kvcore-cli/dist/index.js text:send --contact-id 123 --body "Can we connect today?" --pretty
node packages/kvcore-cli/dist/index.js call:schedule --json '{"contact_id":123,"user_id":456,"scheduled_at":"2026-02-15 10:00:00"}' --pretty
node packages/kvcore-cli/dist/index.js call:twilio --to "+14165550001" --twiml "<Response><Say>Hello</Say></Response>" --pretty

### Scope Notes

KVcore Public API v2 supports contacts, notes, call logging, send email/text, schedule call, user task/call listing, and campaign refresh.

For endpoints not wrapped yet, use kvcore_request or CLI raw.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: danielfoch
- Version: 0.1.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-04T16:23:37.681Z
- Expires at: 2026-05-11T16:23:37.681Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/kvcore-mcp-cli)
- [Send to Agent page](https://openagent3.xyz/skills/kvcore-mcp-cli/agent)
- [JSON manifest](https://openagent3.xyz/skills/kvcore-mcp-cli/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/kvcore-mcp-cli/agent.md)
- [Download page](https://openagent3.xyz/downloads/kvcore-mcp-cli)