Skip to main content
Glama
yarmijosp94

Evaluar MCP Server

by yarmijosp94

process_launch

Launch eTalent recruitment processes on the Evaluar platform by providing a process ID after assigning a position, returning a summary URL for tracking.

Instructions

Launch an eTalent process. The process must have a position assigned first. Returns the summary URL.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
processIdYesThe ID of the process to launch

Implementation Reference

  • The handler function that executes the logic to launch an eTalent process by calling launchProcess.
    export async function handleProcessLaunch(args: { processId: string }): Promise<string> {
      if (!isAuthenticated()) {
        return JSON.stringify({
          success: false,
          error: "Not authenticated. Please login first using auth_login.",
        });
      }
    
      try {
        const summaryUrl = await launchProcess(args.processId);
        return JSON.stringify({
          success: true,
          processId: args.processId,
          summaryUrl,
          message: "Process launched successfully!",
        });
      } catch (error) {
        return JSON.stringify({
          success: false,
          error: error instanceof Error ? error.message : "Unknown error",
        });
      }
    }
  • The tool definition (schema) for process_launch, specifying the name, description, and input parameters.
    export const processLaunchTool = {
      name: "process_launch",
      description: "Launch an eTalent process. The process must have a position assigned first. Returns the summary URL.",
      inputSchema: {
        type: "object" as const,
        properties: {
          processId: {
            type: "string",
            description: "The ID of the process to launch",
          },
        },
        required: ["processId"],
      },
    };

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/yarmijosp94/evaluar-mcp'

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