Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器clawhub未标认证来源可访问clear审计通过

workosmcpworkosmcp 文档

Agent Skill

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

总安装

2,186

周安装

92

GitHub Stars

公开资料未说明

下载量

765
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:workosmcp(workosmcp 文档)
来源仓库:https://github.com/zecurecode/workosmcp
安装命令:
openclaw skills install workosmcp
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install workosmcp

简介

WorkOSMCP 用于连接自托管工作空间平台 WorkOS。

  • 支持文档、数据库、任务等多类型数据接入。
  • 适合集成到 OpenClaw 和其他 AI 代理流程中。
  • 需确认数据源访问权限和隐私保护机制。workosmcp 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 建议查阅仓库说明以了解部署和配置细节。

SKILL.md

name
WorkOS
description
Connect OpenClaw and other AI agents to WorkOS — a self-hosted workspace platform with documents, databases, tasks, meeting transcription, and sharing. Exposes 60+ tools through a remote MCP server with OAuth 2.1.
version
1.0.0
metadata
openclaw
skillKey
workos
homepage
https://workos.no/for-agenter
emoji
🧠
requires
env
[]
bins
[]

WorkOS

WorkOS is a self-hosted, AI-integrated workspace platform (a Notion alternative) that exposes its full data model through a remote MCP server. Use this skill whenever the user talks about their documents, pages, wiki, databases, tasks, meetings, transcripts, or wants the agent to create, update, or search their content on workos.no.

When to use WorkOS

Reach for this skill when the user:

  • Refers to "my wiki", "my workspace", "my page", "my database", "my tasks", "my meetings", "my notes".
  • Says things like "create a new page about …", "add a task", "update the status field on row X", "find the document about …".
  • Wants to search or fetch existing content on workos.no.
  • Asks about transcripts, summaries, or attendees from meetings.
  • Wants to share a page externally or manage access.

If the user has not yet connected the WorkOS MCP server, set up the connection first (see docs/connect.md).

Connection — once per agent

The WorkOS MCP server lives at:

https://workos.no/api/mcp
  • Transport: Streamable HTTP (JSON-RPC 2.0). Not SSE.
  • Auth: OAuth 2.1 with PKCE — fully automatic via client discovery.
  • Scopes: read, write.

OpenClaw and other MCP clients are configured with the URL above and let the OAuth flow happen in the system browser. Per-client setup is in docs/connect.md. Important: older Cline versions must set "type": "streamableHttp" — the server does not support SSE.

What the agent can do

After connecting, the server exposes ~60 tools grouped as follows:

AreaExample toolsUse for
Accountget_me, list_workspaces, get_workspaceIdentity and workspace context
Pagescreate_page, get_page, update_page, archive_page, restore_page, delete_page, move_page, search_pages, list_pagesDocuments, wiki, notes
Page blocksappend_blocks, insert_blocks_after, update_block, delete_blocksGranular editing
Page groupscreate_page_group, update_page_group, delete_page_group, reorder_page_groups, list_page_groupsSidebar organization
Databaseslist_databases, create_database, get_database, update_database, delete_databaseStructured data
Propertiesadd_db_property, update_db_property, remove_db_property, reorder_db_propertiesSchema
Rowslist_db_rows, create_db_row, update_db_cell, delete_db_row, move_db_rowContent
Viewslist_db_views, create_db_view, update_db_view, delete_db_viewTable / board / list
Meetingscreate_meeting, append_transcript, generate_meeting_summary, list_meeting_templatesTranscription + AI summary
Commentscreate_comment, update_comment, resolve_comment, list_comments, delete_commentDiscussion
Sharingcreate_share_link, list_share_links, revoke_share_linkExternal links
Filesupload_imageImage uploads

The full catalog is in docs/tools.md. Always call tools/list after initialize to get the authoritative, current set.

Workflow patterns

Common flows (full examples in docs/workflows.md):

  1. Search → fetch → show: search_pagesget_page → present content.
  2. Create page with structure: create_page (with the right workspaceId

and pageGroupId) → append_blocks for content.

  1. Database update: list_databaseslist_db_rows (filtered) →

update_db_cell per row.

  1. Meeting flow: create_meetingappend_transcript (in chunks) →

generate_meeting_summary.

  1. Safe edits: fetch existing content before overwriting, and confirm

destructive operations (delete, archive) with the user.

Rules and expectations

  • Workspace context first. If the user has not specified a workspace,

call list_workspaces and ask which one is active before writing data.

  • Never guess IDs. Always fetch them from a list/search call.
  • Write conservatively. Prefer update_* over delete-and-recreate.

Confirm deletes/archives before running them.

  • Mirror the user's language. WorkOS users are often Norwegian; mirror

whatever language the user is writing in for new pages and comments.

  • Respect roles. read scope only allows fetching. If a write tool

returns 403, tell the user they lack write access in the workspace.

Troubleshooting

SymptomCauseFix
401 from /api/mcpToken expired or missingThe client should refresh automatically; otherwise remove the server and re-add it
405 on GETClient is trying SSEUse Streamable HTTP — set type: streamableHttp (Cline) or upgrade the client
Empty workspace listUser is not a member of any workspaceHave the user create or join a workspace at workos.no first
403 on write toolsMissing write scopeRe-run the OAuth flow with read write

More in docs/connect.md under "Troubleshooting".

Links

  • For agents (public docs): https://workos.no/for-agenter
  • Homepage: https://workos.no
  • Support: hello@workos.no

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

73.23%
按下载量换算560

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills