MCP (Model Context Protocol) server for GPTZero AI detection API. Detect AI-generated text directly from Claude, ChatGPT, or any LLM that supports MCP. If you find this MCP server useful, please consider supporting its development! ๐ Click here to support this project Your support helps maintain and improve this tool for everyone. Thank you! ๐ - ๐ค Detect AI-generated text with confidence scores
Add this skill
npx mdskills install louis030195/gptzero-mcpClean MCP server for AI text detection with clear setup and useful tool descriptions
1# @louis030195/gptzero-mcp23MCP (Model Context Protocol) server for GPTZero AI detection API. Detect AI-generated text directly from Claude, ChatGPT, or any LLM that supports MCP.45---67<div align="center">89### ๐ Support This Project1011**If you find this MCP server useful, please consider supporting its development!**1213[](https://buy.stripe.com/5kQ14n1j3a347Q59a8gA803)1415[**๐ Click here to support this project**](https://buy.stripe.com/5kQ14n1j3a347Q59a8gA803)1617Your support helps maintain and improve this tool for everyone. Thank you! ๐1819</div>2021---2223## Features2425- ๐ค Detect AI-generated text with confidence scores26- ๐ Multilingual support (French, Spanish)27- ๐ Detailed probability breakdowns (AI/Human/Mixed)28- ๐ฏ High/medium/low confidence categories2930## Installation3132### Claude Desktop3334Add to your Claude Desktop configuration (`~/Library/Application Support/Claude/claude_desktop_config.json` on Mac or `%APPDATA%\Claude\claude_desktop_config.json` on Windows):3536```json37{38 "mcpServers": {39 "gptzero": {40 "command": "npx",41 "args": ["-y", "@louis030195/gptzero-mcp"],42 "env": {43 "GPTZERO_API_KEY": "your-gptzero-api-key"44 }45 }46 }47}48```4950### Claude Code5152```bash53# Install globally in user scope with API key54claude mcp add -s user gptzero npx -e GPTZERO_API_KEY=your-gptzero-api-key -- -y @louis030195/gptzero-mcp55```5657## Get Your GPTZero API Key58591. Go to [GPTZero](https://gptzero.me)602. Sign up or log in613. Navigate to API settings624. Copy your API key6364## Usage6566Once configured, you can use natural language to detect AI content:6768- "Check if this text is AI-generated: [paste text]"69- "Analyze this document for AI detection"70- "What's the probability this was written by AI?"71- "Is this human or AI written?"7273## Tools7475### `gptzero_detect`7677Detect if text was generated by AI.7879**Parameters:**80- `document` (string, required): Text to analyze81- `multilingual` (boolean, optional): Enable multilingual detection for French/Spanish (default: false)8283**Returns:**84- Predicted class (ai/human/mixed)85- Confidence category (high/medium/low)86- Probability scores for each class87- Detailed sentence-level analysis8889### `gptzero_model_versions`9091Get available GPTZero model versions.9293**Returns:** List of available model versions9495## Development9697```bash98# Clone the repo99git clone https://github.com/louis030195/gptzero-mcp.git100cd gptzero-mcp101102# Install dependencies103npm install104105# Build106npm run build107108# Run locally109GPTZERO_API_KEY=your-api-key npm start110```111112## API Documentation113114See [GPTZero API Docs](https://gptzero.stoplight.io/) for full API details.115116## License117118MIT119120## Author121122[Louis Beaumont](https://twitter.com/louis030195)123
Full transparency โ inspect the skill content before installing.