{
  "schemaVersion": "1.0",
  "item": {
    "slug": "mcps-skill",
    "name": "Mcps",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/maplezzk/mcps-skill",
    "canonicalUrl": "https://clawhub.ai/maplezzk/mcps-skill",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/mcps-skill",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=mcps-skill",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "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/mcps-skill"
    },
    "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/mcps-skill",
    "agentPageUrl": "https://openagent3.xyz/skills/mcps-skill/agent",
    "manifestUrl": "https://openagent3.xyz/skills/mcps-skill/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/mcps-skill/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "mcps - MCP CLI Manager",
        "body": "A powerful command-line tool for managing and calling MCP (Model Context Protocol) servers."
      },
      {
        "title": "Installation",
        "body": "npm install -g @maplezzk/mcps"
      },
      {
        "title": "Adding Various MCP Servers",
        "body": "# Add fetch server (web scraping)\nmcps add fetch --command uvx --args mcp-server-fetch\n\n# Add PostgreSQL server\nmcps add postgres --command npx --args @modelcontextprotocol/server-postgres --env POSTGRES_CONNECTION_STRING=\"${DATABASE_URL}\"\n\n# Add GitLab server\nmcps add gitlab --command npx --args gitlab-mcp-server\n\n# Add SSE server\nmcps add remote --type sse --url http://localhost:8000/sse\n\n# Add HTTP server\nmcps add http-server --type http --url http://localhost:8000/mcp"
      },
      {
        "title": "Config File Example (~/.mcps/mcp.json)",
        "body": "{\n  \"servers\": [\n    {\n      \"name\": \"fetch\",\n      \"type\": \"stdio\",\n      \"command\": \"uvx\",\n      \"args\": [\"mcp-server-fetch\"]\n    },\n    {\n      \"name\": \"postgres\",\n      \"type\": \"stdio\",\n      \"command\": \"npx\",\n      \"args\": [\"@modelcontextprotocol/server-postgres\"],\n      \"env\": {\n        \"POSTGRES_CONNECTION_STRING\": \"${DATABASE_URL}\"\n      }\n    },\n    {\n      \"name\": \"gitlab\",\n      \"type\": \"stdio\",\n      \"command\": \"npx\",\n      \"args\": [\"gitlab-mcp-server\"],\n      \"env\": {\n        \"GITLAB_PERSONAL_ACCESS_TOKEN\": \"${GITLAB_TOKEN}\",\n        \"GITLAB_API_URL\": \"https://gitlab.com/api/v4\"\n      }\n    }\n  ]\n}\n\nNote: Use environment variables for sensitive data (${VAR_NAME} format)."
      },
      {
        "title": "Quick Start",
        "body": "# 1. Add an MCP server\nmcps add fetch --command uvx --args mcp-server-fetch\n\n# 2. Start the daemon\nmcps start\n\n# 3. Check status\nmcps status\n\n# 4. List available tools\nmcps tools fetch\n\n# 5. Call a tool\nmcps call fetch fetch url=\"https://example.com\""
      },
      {
        "title": "Server Management",
        "body": "CommandDescriptionmcps lsList all configured serversmcps add <name> --command <cmd> --args <args>Add a new servermcps rm <name>Remove a servermcps update [name]Update server configurationmcps update <name> --disabled trueDisable a server"
      },
      {
        "title": "Daemon Control",
        "body": "CommandDescriptionmcps start [--verbose]Start daemon (verbose mode for debugging)mcps stopStop daemonmcps restart [server]Restart daemon or specific servermcps statusCheck daemon status"
      },
      {
        "title": "Tool Invocation",
        "body": "CommandDescriptionmcps tools <server> [--simple]List available toolsmcps call <server> <tool> [args...]Call a tool"
      },
      {
        "title": "Default Mode (Auto JSON Parsing)",
        "body": "# String values are sent as-is\nmcps call fetch fetch url=\"https://example.com\"\n\n# Numbers and booleans are auto-parsed\nmcps call fetch fetch max_length=5000 follow_redirects=true\n# Sends: { \"max_length\": 5000, \"follow_redirects\": true }\n\n# JSON objects (use single quotes outside)\nmcps call my-server createUser user='{\"name\": \"Alice\", \"age\": 30}'"
      },
      {
        "title": "--raw Mode (Keep Values as Strings)",
        "body": "# Use --raw for SQL IDs, codes, or strings that should not be parsed\nmcps call my-db createOrder --raw order_id=\"12345\" sku=\"ABC-001\"\n# Sends: { \"order_id\": \"12345\", \"sku\": \"ABC-001\" }\n\n# SQL with special characters\nmcps call alibaba-dms createDataChangeOrder --raw \\\n  database_id=\"123\" \\\n  script=\"DELETE FROM table WHERE id = 'xxx';\" \\\n  logic=\"true\""
      },
      {
        "title": "--json Mode (Complex Parameters)",
        "body": "# From JSON string\nmcps call my-server createUser --json '{\"name\": \"Alice\", \"age\": 30}'\n\n# From file\nmcps call my-server createUser --json params.json"
      },
      {
        "title": "Scenario 1: Web Scraping and Search",
        "body": "# Fetch webpage content\nmcps call fetch fetch url=\"https://example.com\" max_length=5000\n\n# Deep fetch (follow links)\nmcps call fetch fetch url=\"https://example.com\" follow_redirects=true max_depth=2\n\n# Filtered fetch\nmcps call fetch fetch url=\"https://news.example.com\" include_tags='[\"article\", \"p\"]' exclude_tags='[\"script\", \"style\"]'"
      },
      {
        "title": "Scenario 2: Database Query",
        "body": "# Query data (auto-parsed parameters)\nmcps call postgres query sql=\"SELECT * FROM users WHERE active = true LIMIT 10\"\n\n# Keep parameters as strings (use --raw)\nmcps call postgres query --raw sql=\"SELECT * FROM orders WHERE id = '12345'\""
      },
      {
        "title": "Scenario 3: Complex Parameter Passing",
        "body": "# JSON object parameters\nmcps call my-server createUser user='{\"name\": \"Alice\", \"age\": 30, \"tags\": [\"admin\", \"user\"]}'\n\n# Load JSON from file\nmcps call my-server createUser --json user.json\n\n# Mixed parameters (some auto-parsed, some raw)\nmcps call my-server update --raw id=\"123\" data='{\"name\": \"Updated\"}'"
      },
      {
        "title": "Scenario 4: Server Management",
        "body": "# View all server configurations\nmcps ls\n\n# Check active connections\nmcps status\n\n# Restart a single server\nmcps restart postgres\n\n# Restart all servers\nmcps restart\n\n# Disable a server (without removing config)\nmcps update my-server --disabled true\n\n# Remove a server\nmcps rm my-server"
      },
      {
        "title": "Scenario 5: Tool Filtering and Search",
        "body": "# Show only tool names (simple mode)\nmcps tools postgres --simple\n\n# Filter tools by keyword\nmcps tools postgres --tool query --tool describe\n\n# Find tools containing \"create\"\nmcps tools postgres --tool create"
      },
      {
        "title": "Configuration",
        "body": "Config file: ~/.mcps/mcp.json\nEnvironment variables:\n\nMCPS_CONFIG_DIR: Config directory\nMCPS_PORT: Daemon port (default: 4100)\nMCPS_VERBOSE: Verbose logging mode"
      },
      {
        "title": "FAQ",
        "body": "Q: How to check server status?\n\nmcps status  # Check active connections\nmcps ls      # Check all configurations (including disabled)\n\nQ: Server connection failed?\n\nmcps start --verbose  # View detailed logs\nmcps restart my-server  # Restart specific server\n\nQ: How to quickly find tools?\n\nmcps tools my-server --tool keyword  # Filter by keyword\nmcps tools my-server --simple        # Show names only\n\nQ: Special characters in parameters (e.g., SQL)?\n\n# Use --raw to keep string format\nmcps call alibaba-dms createDataChangeOrder --raw \\\n  database_id=\"123\" \\\n  script=\"DELETE FROM table WHERE id = 'xxx';\" \\\n  logic=\"true\"\n\nQ: Daemon starts slowly?\n\nFirst start loads all servers, 10-15 seconds is normal\nSubsequent starts are faster (~2 seconds)\nUse mcps ls to check config without starting daemon"
      }
    ],
    "body": "mcps - MCP CLI Manager\n\nA powerful command-line tool for managing and calling MCP (Model Context Protocol) servers.\n\nInstallation\nnpm install -g @maplezzk/mcps\n\nConfiguration Examples\nAdding Various MCP Servers\n# Add fetch server (web scraping)\nmcps add fetch --command uvx --args mcp-server-fetch\n\n# Add PostgreSQL server\nmcps add postgres --command npx --args @modelcontextprotocol/server-postgres --env POSTGRES_CONNECTION_STRING=\"${DATABASE_URL}\"\n\n# Add GitLab server\nmcps add gitlab --command npx --args gitlab-mcp-server\n\n# Add SSE server\nmcps add remote --type sse --url http://localhost:8000/sse\n\n# Add HTTP server\nmcps add http-server --type http --url http://localhost:8000/mcp\n\nConfig File Example (~/.mcps/mcp.json)\n{\n  \"servers\": [\n    {\n      \"name\": \"fetch\",\n      \"type\": \"stdio\",\n      \"command\": \"uvx\",\n      \"args\": [\"mcp-server-fetch\"]\n    },\n    {\n      \"name\": \"postgres\",\n      \"type\": \"stdio\",\n      \"command\": \"npx\",\n      \"args\": [\"@modelcontextprotocol/server-postgres\"],\n      \"env\": {\n        \"POSTGRES_CONNECTION_STRING\": \"${DATABASE_URL}\"\n      }\n    },\n    {\n      \"name\": \"gitlab\",\n      \"type\": \"stdio\",\n      \"command\": \"npx\",\n      \"args\": [\"gitlab-mcp-server\"],\n      \"env\": {\n        \"GITLAB_PERSONAL_ACCESS_TOKEN\": \"${GITLAB_TOKEN}\",\n        \"GITLAB_API_URL\": \"https://gitlab.com/api/v4\"\n      }\n    }\n  ]\n}\n\n\nNote: Use environment variables for sensitive data (${VAR_NAME} format).\n\nQuick Start\n# 1. Add an MCP server\nmcps add fetch --command uvx --args mcp-server-fetch\n\n# 2. Start the daemon\nmcps start\n\n# 3. Check status\nmcps status\n\n# 4. List available tools\nmcps tools fetch\n\n# 5. Call a tool\nmcps call fetch fetch url=\"https://example.com\"\n\nCommand Reference\nServer Management\nCommand\tDescription\nmcps ls\tList all configured servers\nmcps add <name> --command <cmd> --args <args>\tAdd a new server\nmcps rm <name>\tRemove a server\nmcps update [name]\tUpdate server configuration\nmcps update <name> --disabled true\tDisable a server\nDaemon Control\nCommand\tDescription\nmcps start [--verbose]\tStart daemon (verbose mode for debugging)\nmcps stop\tStop daemon\nmcps restart [server]\tRestart daemon or specific server\nmcps status\tCheck daemon status\nTool Invocation\nCommand\tDescription\nmcps tools <server> [--simple]\tList available tools\nmcps call <server> <tool> [args...]\tCall a tool\nTool Invocation: Parameter Passing\nDefault Mode (Auto JSON Parsing)\n# String values are sent as-is\nmcps call fetch fetch url=\"https://example.com\"\n\n# Numbers and booleans are auto-parsed\nmcps call fetch fetch max_length=5000 follow_redirects=true\n# Sends: { \"max_length\": 5000, \"follow_redirects\": true }\n\n# JSON objects (use single quotes outside)\nmcps call my-server createUser user='{\"name\": \"Alice\", \"age\": 30}'\n\n--raw Mode (Keep Values as Strings)\n# Use --raw for SQL IDs, codes, or strings that should not be parsed\nmcps call my-db createOrder --raw order_id=\"12345\" sku=\"ABC-001\"\n# Sends: { \"order_id\": \"12345\", \"sku\": \"ABC-001\" }\n\n# SQL with special characters\nmcps call alibaba-dms createDataChangeOrder --raw \\\n  database_id=\"123\" \\\n  script=\"DELETE FROM table WHERE id = 'xxx';\" \\\n  logic=\"true\"\n\n--json Mode (Complex Parameters)\n# From JSON string\nmcps call my-server createUser --json '{\"name\": \"Alice\", \"age\": 30}'\n\n# From file\nmcps call my-server createUser --json params.json\n\nReal-World Usage Examples\nScenario 1: Web Scraping and Search\n# Fetch webpage content\nmcps call fetch fetch url=\"https://example.com\" max_length=5000\n\n# Deep fetch (follow links)\nmcps call fetch fetch url=\"https://example.com\" follow_redirects=true max_depth=2\n\n# Filtered fetch\nmcps call fetch fetch url=\"https://news.example.com\" include_tags='[\"article\", \"p\"]' exclude_tags='[\"script\", \"style\"]'\n\nScenario 2: Database Query\n# Query data (auto-parsed parameters)\nmcps call postgres query sql=\"SELECT * FROM users WHERE active = true LIMIT 10\"\n\n# Keep parameters as strings (use --raw)\nmcps call postgres query --raw sql=\"SELECT * FROM orders WHERE id = '12345'\"\n\nScenario 3: Complex Parameter Passing\n# JSON object parameters\nmcps call my-server createUser user='{\"name\": \"Alice\", \"age\": 30, \"tags\": [\"admin\", \"user\"]}'\n\n# Load JSON from file\nmcps call my-server createUser --json user.json\n\n# Mixed parameters (some auto-parsed, some raw)\nmcps call my-server update --raw id=\"123\" data='{\"name\": \"Updated\"}'\n\nScenario 4: Server Management\n# View all server configurations\nmcps ls\n\n# Check active connections\nmcps status\n\n# Restart a single server\nmcps restart postgres\n\n# Restart all servers\nmcps restart\n\n# Disable a server (without removing config)\nmcps update my-server --disabled true\n\n# Remove a server\nmcps rm my-server\n\nScenario 5: Tool Filtering and Search\n# Show only tool names (simple mode)\nmcps tools postgres --simple\n\n# Filter tools by keyword\nmcps tools postgres --tool query --tool describe\n\n# Find tools containing \"create\"\nmcps tools postgres --tool create\n\nConfiguration\nConfig file: ~/.mcps/mcp.json\nEnvironment variables:\nMCPS_CONFIG_DIR: Config directory\nMCPS_PORT: Daemon port (default: 4100)\nMCPS_VERBOSE: Verbose logging mode\nFAQ\n\nQ: How to check server status?\n\nmcps status  # Check active connections\nmcps ls      # Check all configurations (including disabled)\n\n\nQ: Server connection failed?\n\nmcps start --verbose  # View detailed logs\nmcps restart my-server  # Restart specific server\n\n\nQ: How to quickly find tools?\n\nmcps tools my-server --tool keyword  # Filter by keyword\nmcps tools my-server --simple        # Show names only\n\n\nQ: Special characters in parameters (e.g., SQL)?\n\n# Use --raw to keep string format\nmcps call alibaba-dms createDataChangeOrder --raw \\\n  database_id=\"123\" \\\n  script=\"DELETE FROM table WHERE id = 'xxx';\" \\\n  logic=\"true\"\n\n\nQ: Daemon starts slowly?\n\nFirst start loads all servers, 10-15 seconds is normal\nSubsequent starts are faster (~2 seconds)\nUse mcps ls to check config without starting daemon"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/maplezzk/mcps-skill",
    "publisherUrl": "https://clawhub.ai/maplezzk/mcps-skill",
    "owner": "maplezzk",
    "version": "0.1.1",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/mcps-skill",
    "downloadUrl": "https://openagent3.xyz/downloads/mcps-skill",
    "agentUrl": "https://openagent3.xyz/skills/mcps-skill/agent",
    "manifestUrl": "https://openagent3.xyz/skills/mcps-skill/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/mcps-skill/agent.md"
  }
}