collabute-mcp

Use Collabute MCP for organization-specific context retrieval and proposal-safe actions. Trigger when users ask about meetings, memory, Linear, Slack, or Vercel data from their Collabute workspace, or ask to create tasks from meeting context.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "collabute-mcp" with this command: npx skills add muperdev/collabute-agent-skills/muperdev-collabute-agent-skills-collabute-mcp

Collabute MCP

Use this skill when the task depends on private organizational context stored or indexed by Collabute.

When to use

Use this skill when requests include:

  • Recent meetings, action items, owners, follow-ups, transcript content
  • Team memory, prior decisions, historical context
  • Linear task lookup from Collabute indexes
  • Slack thread/message retrieval from Collabute indexes
  • Vercel project/deployment status via Collabute integration
  • "Create a task from this meeting" or similar write intent

Do not use this skill for generic coding questions that do not require workspace data.

Preconditions

  1. The MCP server is already configured in the client as collabute.
  2. Auth is OAuth-first; do not rely on static PAT headers for MCP.
  3. Use tools/list as the source of truth for currently available tools/scopes.

Core behavior rules

  1. Prefer deterministic retrieval tools before broad memory search.
  2. For write intents, use proposal tools only; do not assume direct third-party mutation.
  3. If a required tool is missing from tools/list, explain missing scope and ask user to re-auth.
  4. If a meeting is referenced, keep all lookups scoped to that meeting before broadening.
  5. Use transcript pagination for full transcript requests; avoid dumping large transcript output in one response.

Tool map

  • system.ping
    • Use for connectivity and tenant sanity checks.
  • meeting.list_recent (meeting:read)
    • Deterministic recent meeting discovery.
  • meeting.get (meeting:read)
    • Structured meeting detail with summary, memory evidence, and cited transcript snippets.
  • meeting.get_transcript (meeting:read)
    • Explicit full transcript access with pagination.
  • memory.search (memory:read)
    • General memory-first retrieval across org context.
  • memory.get_bundle (memory:read)
    • Intent-specific context packaging.
  • linear.search_tasks / linear.get_task (linear:read)
    • Linear task lookup.
  • slack.search_threads / slack.list_suggestions (slack:read)
    • Slack retrieval.
  • vercel.list_projects / vercel.list_deployments / vercel.get_deployment (vercel:read)
    • Vercel retrieval.
  • meeting.propose_task_from_meeting (write:propose)
    • Safe task creation proposal derived from meeting evidence.
  • memory.propose_write, integration.propose_action (write:propose)
    • Proposal-only write flows.

Playbooks

Playbook A: "Fetch my recent meetings and create a task"

  1. Call meeting.list_recent with a small limit.
  2. Choose the best candidate meeting.
  3. Call meeting.get with a focused query, such as "action items and owners".
  4. Extract actionable items and corresponding snippet ids.
  5. Call meeting.propose_task_from_meeting with:
    • meetingId
    • clear title
    • concise description
    • sourceSnippetIds when available
  6. Tell the user the result is a pending proposal and requires approval.

Playbook B: "Show full transcript"

  1. Call meeting.get_transcript with offset: 0 and bounded limit.
  2. Continue while hasMore is true using nextOffset.
  3. Summarize as needed and keep raw transcript output scoped to the user request.

Playbook C: "What changed in Linear/Slack/Vercel?"

  1. Start with the provider-specific read tool (linear.*, slack.*, vercel.*).
  2. Use memory.search only when additional cross-domain context is required.
  3. Report results with timestamps/status fields when present.

Error handling

  • 401 or unauthenticated:
    • Instruct user to complete OAuth auth flow for the Collabute MCP server.
  • Forbidden scope (missing meeting:read, write:propose, etc.):
    • Ask user to re-authorize and grant required scopes.
  • Not connected integration:
    • Tell user to connect integration in Collabute settings.
  • No data found:
    • Suggest narrowing or broadening query by project/channel/time range.

Response contract for agents

When using Collabute MCP, responses should:

  1. State which Collabute tool(s) were used.
  2. Distinguish facts from inference.
  3. Cite meeting snippet context when proposing meeting-derived tasks.
  4. Clearly mark proposal outputs as pending approval.

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Automation

collabute-mcp

No summary provided by upstream source.

Repository SourceNeeds Review
Coding

github-tools

Interact with GitHub using the `gh` CLI. Use `gh issue`, `gh pr`, `gh run`, and `gh api` for issues, PRs, CI runs, and advanced queries.

Archived SourceRecently Updated
Coding

openclaw-version-monitor

监控 OpenClaw GitHub 版本更新,获取最新版本发布说明,翻译成中文, 并推送到 Telegram 和 Feishu。用于:(1) 定时检查版本更新 (2) 推送版本更新通知 (3) 生成中文版发布说明

Archived SourceRecently Updated
Coding

ask-claude

Delegate a task to Claude Code CLI and immediately report the result back in chat. Supports persistent sessions with full context memory. Safe execution: no data exfiltration, no external calls, file operations confined to workspace. Use when the user asks to run Claude, delegate a coding task, continue a previous Claude session, or any task benefiting from Claude Code's tools (file editing, code analysis, bash, etc.).

Archived SourceRecently Updated