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

            • A
              security
              F
              license
              A
              quality
              A high-performance MCP server that integrates Notion into AI workflows, enabling interaction with Notion pages, databases, and comments through a standardized protocol.
              Last updated -
              8
              10
              13
              TypeScript
            • -
              security
              A
              license
              -
              quality
              An MCP server that enables interaction with the Vercel API to manage deployments, DNS records, domains, projects, and environment variables through natural language commands.
              Last updated -
              65
              TypeScript
              MIT License
            • -
              security
              F
              license
              -
              quality
              An MCP server that connects to Backlog API, providing functionality to search, retrieve, and update issues through natural language commands.
              Last updated -
              53
              1
              JavaScript
              • Apple
            • -
              security
              A
              license
              -
              quality
              An MCP server that allows AI assistants to interact with Foundry datasets, ontology objects, and functions through natural language queries and commands.
              Last updated -
              2
              Python
              MIT License

            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