โ† All skills
Tencent SkillHub ยท Developer Tools

Claude Code Agent

Integrates MCP tool servers for orchestration, state persistence with IndexedDB/localStorage, and session sync across devices in OpenClaw/Clawdbot.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Integrates MCP tool servers for orchestration, state persistence with IndexedDB/localStorage, and session sync across devices in OpenClaw/Clawdbot.

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
README.md, SKILL.md, examples/basic-mcp.ts, examples/chat-store.ts, mcp_config.example.json, package.json

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
0.2.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 9 sections Open source page

Description

MCP (Model Context Protocol) integration for OpenClaw/Clawdbot. Use when you need to: Connect and orchestrate MCP tool servers (filesystem, GitHub, etc.) Persist state across sessions with IndexedDB/localStorage Sync sessions across multiple devices Triggers: "MCP", "tool server", "sub-agent orchestration", "session sync", "state persistence", "Claude Code integration"

Installation

npm install openclaw-claude-code-skill

MCP Server Management

import { initializeMcpSystem, addMcpServer, executeMcpAction, getAllTools } from "openclaw-claude-code-skill"; // 1. Initialize all configured servers await initializeMcpSystem(); // 2. Add a new MCP server await addMcpServer("fs", { command: "npx", args: ["-y", "@modelcontextprotocol/server-filesystem", "/tmp"] }); // 3. Get available tools const tools = await getAllTools(); // 4. Call a tool const result = await executeMcpAction("fs", { method: "tools/call", params: { name: "read_file", arguments: { path: "/tmp/test.txt" } } });

State Persistence

import { createPersistStore, indexedDBStorage } from "openclaw-claude-code-skill"; const useStore = createPersistStore( { count: 0, items: [] }, (set, get) => ({ increment: () => set({ count: get().count + 1 }), addItem: (item: string) => set({ items: [...get().items, item] }) }), { name: "my-store" }, indexedDBStorage // or omit for localStorage ); // Check hydration status if (useStore.getState()._hasHydrated) { console.log("State restored!"); }

Session Synchronization

import { mergeSessions, mergeWithUpdate, mergeKeyValueStore } from "openclaw-claude-code-skill"; // Merge chat sessions from multiple sources const mergedSessions = mergeSessions(localSessions, remoteSessions); // Merge configs with timestamp-based resolution const mergedConfig = mergeWithUpdate(localConfig, remoteConfig);

Key Functions

FunctionPurposeinitializeMcpSystem()Start all MCP servers from configaddMcpServer(id, config)Add new server dynamicallyremoveMcpServer(id)Remove a serverpauseMcpServer(id)Pause a serverresumeMcpServer(id)Resume a paused serverexecuteMcpAction(id, req)Call a tool on specific servergetAllTools()List all available toolsgetClientsStatus()Get status of all MCP clientssetConfigPath(path)Set custom config file locationcreatePersistStore()Create Zustand store with persistencemergeSessions()Merge session arraysmergeWithUpdate()Merge with timestamp resolutionmergeKeyValueStore()Merge key-value stores

Configuration

Create mcp_config.json: { "mcpServers": { "filesystem": { "command": "npx", "args": ["-y", "@modelcontextprotocol/server-filesystem", "/tmp"], "status": "active" }, "github": { "command": "npx", "args": ["-y", "@modelcontextprotocol/server-github"], "env": { "GITHUB_TOKEN": "your-token" }, "status": "active" } } } Set custom config path: import { setConfigPath } from "openclaw-claude-code-skill"; setConfigPath("/path/to/mcp_config.json");

Requirements

Node.js 18+ TypeScript (optional but recommended)

Links

GitHub npm MCP Specification

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
2 Docs2 Scripts2 Config
  • SKILL.md Primary doc
  • README.md Docs
  • examples/basic-mcp.ts Scripts
  • examples/chat-store.ts Scripts
  • mcp_config.example.json Config
  • package.json Config