Skip to main content
Glama

WorkOS MCP Server

by fefergrgrgrg

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
-
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 que los agentes de Cursor interactúen con la API de WorkOS, brindando acceso a la funcionalidad de WorkOS directamente desde el editor.

  1. Herramientas disponibles
    1. Instalación
      1. Implementando cambios
        1. Cómo crear nuevas herramientas MCP

          Related MCP Servers

          • -
            security
            A
            license
            -
            quality
            Enables the creation and deployment of API-based MCP tools for Cursor Agent using Cloudflare Workers, streamlining development and integration of custom functionalities.
            Last updated -
            62
            25
            TypeScript
            MIT License
          • -
            security
            A
            license
            -
            quality
            A lightweight MCP server allowing agents to interact with the WorkOS API for streamlined WorkOS operations through natural language commands.
            Last updated -
            3
            TypeScript
            MIT License
          • -
            security
            A
            license
            -
            quality
            An MCP server that converts Cursor agent plans into structured markdown task lists and organizes them in your repository, helping you track AI-generated plans and recommendations as actionable specifications.
            Last updated -
            3
            Python
            MIT License
            • Linux
            • Apple
          • -
            security
            F
            license
            -
            quality
            An MCP server that provides detailed information about your development environment to the Cursor code editor, enabling more context-aware assistance.
            Last updated -
            1
            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/fefergrgrgrg/workos-mcp'

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