Skip to main content
Glama
louis030195

GPTZero MCP Server

by louis030195

gptzero_model_versions

Retrieve available AI detection model versions from GPTZero to select appropriate models for analyzing text authenticity and identifying AI-generated content.

Instructions

Get available GPTZero model versions

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • Handler for the gptzero_model_versions tool. Calls the client's getModelVersions method and returns the list of versions formatted as text content.
    case "gptzero_model_versions": {
      const versions = await client.getModelVersions();
    
      return {
        content: [
          {
            type: "text",
            text: `Available GPTZero model versions:\n\n${versions.join("\n")}`,
          },
        ],
      };
    }
  • Core helper function in GPTZeroClient class that makes the API call to retrieve GPTZero model versions.
    async getModelVersions() {
      const response = await this.api.get("/model-versions/ai-scan");
      return response.data;
    }
  • src/index.ts:88-95 (registration)
    Tool registration in the ListToolsRequestHandler, including name, description, and empty input schema (no parameters required).
    {
      name: "gptzero_model_versions",
      description: "Get available GPTZero model versions",
      inputSchema: {
        type: "object",
        properties: {},
      },
    },
Install Server

Other Tools

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/louis030195/gptzero-mcp'

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