Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计异常

meegle-mcpmeegle MCP 搜索

Agent Skill

meegle-mcp 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

316

周安装

12

GitHub Stars

公开资料未说明

下载量

97
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:meegle-mcp(meegle MCP 搜索)
来源仓库:https://github.com/pkycy/meegle-mcp-skill
仓库路径:skills/meegle-mcp
安装命令:
npx skills add https://github.com/pkycy/meegle-mcp-skill --skill meegle-mcp
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/pkycy/meegle-mcp-skill --skill meegle-mcp

简介

meegle-mcp 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。

  • 它支持通过关键词或任务场景进行信息检索,帮助用户在海量数据中快速筛选出相关结果。
  • 可通过 npx skills add 命令从 GitHub 仓库安装,具体用法建议参考原始 README 文件。
  • 安装前请确认权限范围和维护状态,注意可能涉及联网、命令执行或文件读写操作。
  • meegle-mcp 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Meegle MCP Skill

Integrate Meegle (visual workflow and project management tool) with OpenClaw using the Model Context Protocol (MCP).

What is Meegle?

Meegle is a leading visual project management tool powered by Larksuite, designed for agile teams. It provides:

  • Customizable Kanban boards and Gantt charts
  • Real-time collaboration with integrated chat
  • Workflow automation and custom pipelines
  • Time tracking and analytics dashboard
  • Client portal access for external stakeholders

Setup

Prerequisites

You need:

  1. A Meegle account with API access
  2. Your MEEGLE_USER_KEY from your Meegle workspace

Configuration

Option 1: Environment Variable (Recommended)

Set your user key as an environment variable:

export MEEGLE_USER_KEY="your_user_key_here"
export MEEGLE_MCP_KEY="your_mcp_key_here"

Add this to your shell profile (~/.bashrc, ~/.zshrc, etc.) to persist across sessions.

Option 2: OpenClaw Config

Add the MCP server configuration to your OpenClaw settings:

  1. Edit or create your OpenClaw MCP servers config file
  2. Add the Meegle MCP server configuration:
{
  "mcpServers": {
    "meegle": {
      "command": "node",
      "args": ["{baseDir}/scripts/mcp-proxy.js"],
      "env": {
        "MEEGLE_USER_KEY": "your_user_key_here",
        "MEEGLE_MCP_URL": "https://project.larksuite.com/mcp_server/v1",
        "MEEGLE_MCP_KEY": "your_mcp_key_here"
      },
      "status": "active"
    }
  }
}

Option 3: Using mcporter (Alternative)

If you have mcporter installed:

mcporter add meegle \
  --url "https://project.larksuite.com/mcp_server/v1?mcpKey=your_mcp_key_here&userKey={user_key}" \
  --env MEEGLE_USER_KEY=your_user_key_here

Installation

Via ClawHub (Recommended):

clawhub install meegle-mcp

From GitHub:

git clone <this-repo-url> meegle-mcp
cd meegle-mcp
./scripts/setup.sh

Then restart OpenClaw and verify installation:

openclaw skills list | grep meegle

Available Tools

Once configured, the Meegle MCP server provides various tools for project management. Common operations include:

Project Management

  • List Projects: View all projects in your workspace
  • Create Project: Set up new projects with custom workflows
  • Update Project: Modify project details, status, or members

Task Operations

  • Create Task: Add new tasks with assignees, due dates, and priorities
  • List Tasks: Filter and search tasks by project, assignee, or status
  • Update Task: Change task properties, move between workflow stages
  • Get Task Details: View comprehensive task information

Workflow Management

  • Get Workflows: List available workflow templates
  • Apply Workflow: Assign workflows to projects
  • Update Workflow Stage: Move items through workflow stages

Team Collaboration

  • Add Members: Invite team members to projects
  • List Members: View project participants and roles
  • Update Permissions: Manage access levels

Analytics & Reporting

  • Get Project Stats: View progress, completion rates, and metrics
  • Time Tracking: Log and query time entries
  • Generate Reports: Create custom reports on project data

Usage Examples

Creating a New Project

Create a new Meegle project called "Q1 Website Redesign" with a Kanban workflow

Managing Tasks

Show me all high-priority tasks assigned to me in Meegle
Create a task in Meegle: "Update landing page copy" assigned to @designer, due next Friday

Workflow Operations

Move the task "Homepage mockups" to the "In Review" stage in Meegle

Team Coordination

Add john@company.com as a contributor to the "Mobile App" project in Meegle

Reporting

Generate a summary of completed tasks in Meegle for the past week

Limitations

  • Authentication: Requires a valid MEEGLE_USER_KEY with appropriate permissions
  • Rate Limits: Subject to Meegle API rate limits (check your plan)
  • Read-Only Operations: Some operations may be restricted based on your role
  • Workspace Scope: Only accesses projects in your authorized workspace

Security Notes

  • Never commit your MEEGLE_USER_KEY to version control
  • Store credentials in environment variables or secure config files
  • Review permissions before granting OpenClaw access to Meegle
  • Consider using a dedicated service account for automation

Troubleshooting

"Authentication failed" error

  • Verify your MEEGLE_USER_KEY is correct
  • Ensure the key has not expired or been revoked
  • Check that your Meegle account has API access enabled

"MCP server not responding"

  • Verify network connectivity to project.larksuite.com
  • Check that the MCP server URL and key are correct
  • Review OpenClaw logs: openclaw logs --filter=meegle

Tools not appearing

  • Restart OpenClaw after installation
  • Check skill is loaded: openclaw skills list
  • Verify environment variables are set correctly

Resources

Feedback

Issues or suggestions? Open an issue on the skill repository or contact via ClawHub.


Note: This skill uses the Model Context Protocol to communicate with Meegle's MCP server. Tool availability and capabilities depend on your Meegle plan and permissions.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

38.11%
按下载量换算37

Claude

28.44%
按下载量换算28

Cursor

18.98%
按下载量换算18

Gemini CLI

9.54%
按下载量换算9

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

未通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills