WorkOS MCP Server
workos-mcp
Это облегченный сервер протокола управления моделью (MCP), загружаемый с помощью create-mcp и развертываемый на Cloudflare Workers.
Этот сервер MCP позволяет агентам (например, агентам курсора) взаимодействовать с API WorkOS .
Доступные инструменты
Текущий список инструментов см. в src/index.ts. Каждый метод в классе — это инструмент MCP.
Related MCP server: Remote MCP Server with WorkOS AuthKit
Установка
Запустите скрипт автоматической установки, чтобы клонировать этот сервер MCP и развернуть его в своей учетной записи Cloudflare:
bun create mcp --clone https://github.com/zueai/workos-mcpОткройте
Cursor Settings -> MCP -> Add new MCP serverи вставьте скопированную в буфер обмена команду.Загрузите свой ключ API WorkOS и идентификатор клиента в качестве секретов:
bunx wrangler secret put WORKOS_API_KEY
bunx wrangler secret put WORKOS_CLIENT_IDРазвертывание изменений
Запустите скрипт развертывания:
bun run deployЗатем перезагрузите окно курсора, чтобы использовать обновленные инструменты.
Как создать новые инструменты MCP
Чтобы создать новые инструменты MCP, добавьте методы в класс MyWorker в src/index.ts . Каждая функция автоматически станет инструментом MCP, который может использовать ваш агент.
Пример:
/**
* A warm, friendly greeting from your MCP server.
* @param name {string} the name of the person we are greeting.
* @return {string} the contents of our greeting.
*/
sayHello(name: string) {
return `Hello from an MCP Worker, ${name}!`;
}Комментарии JSDoc важны:
Первая строка становится описанием инструмента.
Теги
@paramопределяют параметры инструмента с типами и описаниями.Тег
@returnопределяет возвращаемое значение и тип.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
No tool schema history has been recorded yet.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Official MCP server for Agentwork — delegate tasks to AI agents with human-in-the-loop
Nifty's MCP server — exposes tasks, projects, messages, and files as tools for AI agents.
MCP server that lets AI assistants use all OneSchema features exposed via the public API.
Related MCP Servers
- AlicenseNot gradedqualityNot gradedmaintenanceA lightweight MCP server allowing agents to interact with the WorkOS API for streamlined WorkOS operations through natural language commands.5-
- FlicenseNot gradedqualityDmaintenanceAn example MCP server that allows remote clients to connect and authenticate using WorkOS AuthKit, providing organization-centric authentication with permission-based access control for tools.2-
- AlicenseNot gradedqualityFmaintenanceA simple MCP server that provides access to Jira issues from Cursor AI, allowing users to reference and query Jira tickets directly in the chat panel.17MIT
- AlicenseNot gradedqualityDmaintenanceThis MCP server allows agents to interact with the WorkOS API.MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/fefergrgrgrg/cs-insight'
If you have feedback or need assistance with the MCP directory API, please join our Discord server