Token导航 LogoToken导航TokenDH.com
前端设计external-servicegithub未标认证来源可访问clear审计提醒

moai-integration-mcpmoai 集成 MCP

Agent Skill

moai-integration-mcp 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

196

周安装

8

GitHub Stars

公开资料未说明

下载量

63
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/rdmptv/adbautoplayer --skill moai-integration-mcp

简介

moai-integration-mcp 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中围绕仓库状态、代码变更或协作事项进行整理。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装并使用。
  • 安装前建议确认权限范围和维护状态,注意是否会触发联网或文件读写操作。
  • 具体用法可结合来源仓库 README 进一步核验实际功能边界。

SKILL.md

MCP Integration Specialist

Quick Reference (30 seconds)

Universal MCP Integration - Comprehensive MCP (Model Context Protocol) specialist combining Figma design integration, Notion knowledge management, Nano-Banana AI services, and custom connector frameworks with advanced orchestration capabilities.

Core Capabilities:

  • Figma Integration: Design system extraction, component generation, token synchronization
  • Notion Integration: Database queries, page management, knowledge extraction
  • Nano-Banana AI: Content generation, analysis, AI-powered workflows
  • Universal Connectors: Extensible framework for custom service integrations
  • Multi-Service Orchestration: Complex workflows across multiple platforms
  • Enterprise Security: OAuth, credential management, secure authentication

When to Use:

  • Integrating multiple external services via MCP
  • Building automated design-to-code workflows
  • Creating AI-powered content pipelines
  • Implementing cross-platform data synchronization
  • Developing custom MCP connectors

Implementation Guide (5 minutes)

Quick Start Workflow

Universal MCP Server Setup:

from moai_integration_mcp import UniversalMCPServer, ServiceOrchestrator

# Initialize universal MCP server
mcp_server = UniversalMCPServer("integration-server")

# Configure connectors
mcp_server.setup_connectors({
 'figma': {'api_key': os.getenv('FIGMA_TOKEN')},
 'notion': {'api_key': os.getenv('NOTION_TOKEN')},
 'nano_banana': {'api_key': os.getenv('NANO_BANANA_TOKEN')}
})

# Register orchestration tools
orchestrator = ServiceOrchestrator(mcp_server)
orchestrator.register_workflows()

# Start server
mcp_server.start(port=3000)

Multi-Service Workflow:

# Design system automation
mcp-tools design_to_code --figma-file "abc123" --output ./src/components

# Knowledge extraction workflow
mcp-tools knowledge_extraction --notion-db "xyz789" --analyze "best_practices"

# AI-powered content generation
mcp-tools ai_workflow --input "./docs/" --output "./generated/" --model "claude-3-5-sonnet"

Core Components

  1. Server Architecture (modules/server-architecture.md)
  • Universal MCP server framework
  • Multi-connector management
  • Dynamic tool registration
  • Configuration and initialization
  1. Integration Patterns (modules/integration-patterns.md)
  • Multi-service orchestration
  • Workflow engine and templates
  • Data transformation pipelines
  • Advanced integration patterns
  1. Security & Authentication (modules/security-authentication.md)
  • OAuth 2.0 flows for all services
  • Secure credential storage
  • Token management and refresh
  • Access control and permissions
  1. Error Handling (modules/error-handling.md)
  • Circuit breaker patterns
  • Retry logic with backoff
  • Fault tolerance mechanisms
  • Monitoring and observability

Advanced Patterns (10+ minutes)

Multi-Service Orchestration

Design-to-Code Pipeline:

async def complete_design_workflow(figma_file_id: str, target_library: str = "shadcn"):
 """Complete design system to production code workflow."""

 # Phase 1: Extract design data
 design_data = await mcp_server.invoke_tool("extract_figma_components", {
 "file_id": figma_file_id,
 "include_tokens": True
 })

 # Phase 2: Process with AI
 component_specs = []
 for component in design_data["components"]:
 spec = await mcp_server.invoke_tool("analyze_with_ai", {
 "content": json.dumps(component),
 "analysis_type": "component_specification"
 })
 component_specs.append(spec)

 # Phase 3: Generate code
 generated_components = []
 for spec in component_specs:
 code = await mcp_server.invoke_tool("generate_ai_content", {
 "prompt": f"Generate React component for: {spec['analysis']}",
 "max_tokens": 3000
 })
 generated_components.append(code)

 # Phase 4: Create documentation
 documentation = await mcp_server.invoke_tool("generate_ai_content", {
 "prompt": f"Create documentation for components: {json.dumps(component_specs)}",
 "max_tokens": 4000
 })

 return {
 "components": generated_components,
 "documentation": documentation,
 "design_tokens": design_data["design_tokens"],
 "workflow_status": "completed"
 }

Knowledge Base Automation:

async def knowledge_base_workflow(notion_database: str, analysis_goals: list):
 """Automated knowledge extraction and organization workflow."""

 # Extract content from Notion
 content = await mcp_server.invoke_tool("query_notion_database", {
 "database_id": notion_database,
 "query": {"filter": {"property": "Status", "select": {"equals": "Published"}}}
 })

 # Analyze with AI for each goal
 analyses = {}
 for goal in analysis_goals:
 analysis = await mcp_server.invoke_tool("analyze_with_ai", {
 "content": json.dumps(content["results"]),
 "analysis_type": goal
 })
 analyses[goal] = analysis

 # Structure knowledge base
 structured_kb = await mcp_server.invoke_tool("generate_ai_content", {
 "prompt": f"Create structured knowledge base from analyses: {json.dumps(analyses)}",
 "max_tokens": 5000
 })

 return {
 "raw_content": content,
 "analyses": analyses,
 "structured_knowledge": structured_kb,
 "source_count": len(content["results"])
 }

Custom Connector Development

Extensible Connector Framework:

class CustomConnector:
 def __init__(self, service_config: dict):
 self.config = service_config
 self.client = None

 async def initialize(self):
 """Initialize custom service client."""
 self.client = CustomServiceClient(self.config)

 def register_tools(self, server):
 """Register connector-specific tools."""

 @server.tool()
 async def custom_service_operation(
 operation_type: str,
 parameters: dict = {}
 ) -> dict:
 """Execute operation on custom service."""
 try:
 result = await self.client.execute_operation(
 operation_type,
 parameters
 )

 return {
 "status": "success",
 "result": result,
 "operation": operation_type
 }

 except Exception as e:
 return {
 "status": "error",
 "error": str(e),
 "operation": operation_type
 }

# Register custom connector
mcp_server.register_connector('custom_service', CustomConnector(config))

Works Well With

Complementary Skills:

  • moai-domain-frontend - Frontend component generation and integration
  • moai-domain-backend - Backend API integration patterns
  • moai-docs-generation - Automated documentation workflows
  • moai-foundation-claude - Claude Code integration patterns

External Services:

  • Figma (design systems, component extraction)
  • Notion (knowledge management, documentation)
  • Nano-Banana (AI content generation)
  • Custom APIs and web services
  • Database systems and storage

Integration Platforms:

  • FastMCP server framework
  • OAuth 2.0 providers
  • REST APIs and GraphQL
  • Message queues and event systems
  • Cloud storage services

Usage Examples

Design System Integration

# Extract and sync design tokens
tokens = await mcp_server.invoke_tool("sync_figma_tokens", {
 "file_id": "design-system-file",
 "output_format": "typescript",
 "include_variants": True
})

# Generate component library
components = await mcp_server.invoke_tool("extract_figma_components", {
 "file_id": "component-library",
 "target_framework": "react",
 "include_stories": True
})

Knowledge Base Management

# Extract and analyze knowledge
analysis = await mcp_server.invoke_tool("knowledge_extraction_workflow", {
 "notion_database_id": "knowledge-base",
 "analysis_goals": ["best_practices", "patterns", "action_items"],
 "output_format": "structured_json"
})

# Create new documentation
doc_page = await mcp_server.invoke_tool("create_notion_page", {
 "database_id": "documentation-db",
 "properties": {
 "Title": {"title": [{"text": {"content": "Best Practices Guide"}}]},
 "Category": {"select": {"name": "Guidelines"}}
 },
 "content": analysis["structured_knowledge"]
})

AI-Powered Workflows

# Generate content with AI
ai_content = await mcp_server.invoke_tool("generate_ai_content", {
 "prompt": "Create comprehensive API documentation",
 "model": "claude-3-5-sonnet",
 "max_tokens": 4000,
 "temperature": 0.7
})

# Analyze and summarize
summary = await mcp_server.invoke_tool("analyze_with_ai", {
 "content": ai_content["content"],
 "analysis_type": "summary",
 "include_key_points": True
})

Technology Stack

Core Framework:

  • FastMCP (Python MCP server framework)
  • AsyncIO for concurrent operations
  • Pydantic for data validation
  • HTTPX for HTTP client operations

Service Integrations:

  • Figma API (design systems)
  • Notion API (knowledge management)
  • Nano-Banana API (AI services)
  • Custom REST/GraphQL APIs

Security & Authentication:

  • OAuth 2.0 implementation
  • Cryptography for encryption
  • JWT token management
  • Secure credential storage

Error Handling & Reliability:

  • Circuit breaker patterns
  • Retry mechanisms with backoff
  • Comprehensive error classification
  • Monitoring and observability

Development Tools:

  • Type hints and validation
  • Comprehensive logging
  • Performance monitoring
  • Debugging and profiling tools

*For detailed implementation patterns, connector development, and advanced workflows, see the modules/ directory.*

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

Claude Code

31.96%
按下载量换算20

windsurf

21.12%
按下载量换算13

OpenCode

16.56%
按下载量换算10

Codex

11.57%
按下载量换算7

Antigravity

7.9%
按下载量换算5

Gemini CLI

3.26%
按下载量换算2

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills