WorkOS MCP Server

by ZukAi-MCP
MIT License
2

Integrations

  • Deploys the MCP server on Cloudflare Workers infrastructure

  • Used for cloning the MCP repository template

  • Used to define tool interfaces and structure in the MCP server implementation

웍스-mcp

이는 create-mcp 로 부트스트랩되고 Cloudflare Workers에 배포되는 가벼운 모델 제어 프로토콜(MCP) 서버입니다.

이 MCP 서버를 사용하면 에이전트(예: 커서 에이전트)가 WorkOS API 와 상호 작용할 수 있습니다.

사용 가능한 도구

현재 도구 목록은 src/index.ts를 참조하세요. 클래스의 모든 메서드는 MCP 도구입니다.

설치

  1. 자동 설치 스크립트를 실행하여 이 MCP 서버를 복제하고 Cloudflare 계정에 배포합니다.

지엑스피1

  1. Cursor Settings -> MCP -> Add new MCP server 복사한 명령을 클립보드에 붙여넣습니다.
  2. WorkOS API 키와 클라이언트 ID를 비밀로 업로드하세요.
bunx wrangler secret put WORKOS_API_KEY bunx wrangler secret put WORKOS_CLIENT_ID

변경 사항 배포

  1. 배포 스크립트를 실행합니다.
bun run deploy
  1. 그런 다음 커서 창을 다시 로드하여 업데이트된 도구를 사용하세요.

새로운 MCP 도구를 만드는 방법

새로운 MCP 도구를 만들려면 src/index.tsMyWorker 클래스에 메서드를 추가하세요. 각 함수는 에이전트가 사용할 수 있는 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 태그는 반환 값과 유형을 지정합니다.
-
security - not tested
A
license - permissive license
-
quality - not tested

커서 에이전트가 WorkOS API와 상호 작용할 수 있도록 하는 가벼운 MCP 서버로, 편집기 내에서 직접 WorkOS 기능에 액세스할 수 있도록 합니다.

  1. 사용 가능한 도구
    1. 설치
      1. 변경 사항 배포
        1. 새로운 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 -
            66
            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

          ID: oxhfpqbnwv