Skip to main content
Glama

WorkOS MCP Server

by zueai

workos-mcp

Este es un servidor liviano de Protocolo de Control de Modelos (MCP) iniciado con create-mcp e implementado en Cloudflare Workers.

Este servidor MCP permite que los agentes (como los agentes de Cursor) interactúen con la API de WorkOS .

Herramientas disponibles

Consulte src/index.ts para ver la lista actual de herramientas. Todos los métodos de la clase son herramientas MCP.

Instalación

  1. Ejecute el script de instalación automatizada para clonar este servidor MCP e implementarlo en su cuenta de Cloudflare:
bun create mcp --clone https://github.com/zueai/workos-mcp
  1. Abra Cursor Settings -> MCP -> Add new MCP server y pegue el comando que se copió en su portapapeles.
  2. Cargue su clave API de WorkOS y su ID de cliente como secretos:
bunx wrangler secret put WORKOS_API_KEY bunx wrangler secret put WORKOS_CLIENT_ID

Implementando cambios

  1. Ejecute el script de implementación:
bun run deploy
  1. Luego vuelva a cargar la ventana del Cursor para utilizar las herramientas actualizadas.

Cómo crear nuevas herramientas MCP

Para crear nuevas herramientas MCP, agregue métodos a la clase MyWorker en src/index.ts . Cada función se convertirá automáticamente en una herramienta MCP que su agente podrá usar.

Ejemplo:

/** * 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}!`; }

Los comentarios de JSDoc son importantes:

  • La primera línea se convierte en la descripción de la herramienta.
  • Las etiquetas @param definen los parámetros de la herramienta con tipos y descripciones
  • La etiqueta @return especifica el valor de retorno y el tipo

Más información

Consulte los siguientes recursos para obtener más información:

-
security - not tested
A
license - permissive license
-
quality - not tested

remote-capable server

The server can be hosted and run remotely because it primarily relies on remote services or has no dependency on the local environment.

Un servidor MCP liviano que permite a los agentes interactuar con la API de WorkOS para optimizar las operaciones de WorkOS a través de comandos en lenguaje natural.

  1. Herramientas disponibles
    1. Instalación
      1. Implementando cambios
        1. Cómo crear nuevas herramientas MCP
          1. Más información

            Related MCP Servers

            • -
              security
              A
              license
              -
              quality
              A lightweight MCP server that enables Cursor Agents to interact with the WorkOS API, providing access to WorkOS functionality directly from within the editor.
              Last updated -
              14
              JavaScript
              MIT License
            • -
              security
              F
              license
              -
              quality
              An 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.
              Last updated -
              1
              TypeScript
            • -
              security
              F
              license
              -
              quality
              An MCP (Multi-Agent Conversation Protocol) Server that enables interaction with Google Workflows API, allowing management of workflow executions and definitions through natural language commands.
              Last updated -
              Python
              • Linux
              • Apple
            • -
              security
              F
              license
              -
              quality
              An MCP server that enables interaction with Google Cloud's Workload Manager API, allowing users to manage workloads through natural language commands.
              Last updated -
              Python
              • Linux
              • Apple

            View all related MCP servers

            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/zueai/workos-mcp'

            If you have feedback or need assistance with the MCP directory API, please join our Discord server