Skip to main content
Glama
makeplane

Plane MCP Server

Official
by makeplane

get_workspace_members

Retrieve all members in the current workspace using the Plane MCP Server to manage collaboration and access within your projects.

Instructions

Get all members in the current workspace

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The inline handler function for the 'get_workspace_members' tool. It makes a GET request to the Plane API to fetch workspace members and returns the data as a JSON-formatted text content block.
    server.tool("get_workspace_members", "Get all members in the current workspace", {}, async () => { const members = await makePlaneRequest("GET", `workspaces/${process.env.PLANE_WORKSPACE_SLUG}/members/`); return { content: [ { type: "text", text: JSON.stringify(members, null, 2), }, ], }; });
  • Registers the 'get_workspace_members' tool on the MCP server with description, empty schema, and inline handler.
    server.tool("get_workspace_members", "Get all members in the current workspace", {}, async () => { const members = await makePlaneRequest("GET", `workspaces/${process.env.PLANE_WORKSPACE_SLUG}/members/`); return { content: [ { type: "text", text: JSON.stringify(members, null, 2), }, ], }; });
  • Calls registerUserTools within the main registerTools function, which includes the get_workspace_members tool registration.
    registerUserTools(server);
  • src/server.ts:15-15 (registration)
    Top-level call to register all tools, including get_workspace_members via the chain.
    registerTools(server);

Latest Blog Posts

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/makeplane/plane-mcp-server'

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