Skip to main content
Glama
yarmijosp94

Evaluar MCP Server

by yarmijosp94

auth_login

Authenticate users with username and password to access Evaluar recruitment platform features, returning authentication status and token information.

Instructions

Authenticate with Evaluar using username and password. Returns success status and masked token info.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
usernameYesEmail address for Evaluar account
passwordYesPassword for Evaluar account

Implementation Reference

  • The handler function for the auth_login tool, which performs the actual login via the API client.
    export async function handleAuthLogin(args: { username: string; password: string }): Promise<string> {
      try {
        const tokenData = await login(args.username, args.password);
        return JSON.stringify({
          success: true,
          message: "Login successful",
          expiresIn: tokenData.expires_in,
          tokenType: tokenData.token_type,
        });
      } catch (error) {
        return JSON.stringify({
          success: false,
          error: error instanceof Error ? error.message : "Unknown error",
        });
      }
    }
  • The schema definition for the auth_login tool, specifying name, description, and input parameters.
    export const authLoginTool = {
      name: "auth_login",
      description: "Authenticate with Evaluar using username and password. Returns success status and masked token info.",
      inputSchema: {
        type: "object" as const,
        properties: {
          username: {
            type: "string",
            description: "Email address for Evaluar account",
          },
          password: {
            type: "string",
            description: "Password for Evaluar account",
          },
        },
        required: ["username", "password"],
      },
    };

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