Editorial review
Ask an assistant to screen an article draft, summarize detector signals, and identify passages that need human review.
MCP integration
Analyze text inside your assistant through a secure Streamable HTTP MCP connection.
export DETECTING_AI_API_KEY="YOUR_API_KEY"
[mcp_servers.detecting_ai]
url = "https://api.detecting-ai.com/api/mcp"
bearer_token_env_var = "DETECTING_AI_API_KEY"
tool_timeout_sec = 180An AI Detector MCP server gives a compatible assistant permission to call a dedicated detection tool. The assistant sends only the text selected for analysis, receives structured detector output, and can explain the result in the context of the current task.

When a user asks whether text contains AI-writing signals, the client selects the Detecting AI tool and sends the supplied passage. The MCP server validates the API key and detector quota, runs the selected detector version, records usage, and returns structured output to the client.
detect_ai_text: Analyzes text for AI-writing signals and returns detailed detector output.
| Input | Type | Status | Description |
|---|---|---|---|
text | string | Required | The passage or document section to analyze. |
version | v1 | v2 | v3 | Optional | Detector version. The default is v3. |
Connect through Streamable HTTP with an Authorization bearer header. Client support and configuration formats can vary by version.
MCP works best when the assistant needs a focused external tool as part of a user-controlled workflow.
Ask an assistant to screen an article draft, summarize detector signals, and identify passages that need human review.
Review submitted writing inside an approved academic workflow while treating detector output as evidence for further review, not proof.
Add detector checks to agent-assisted moderation, intake, or quality assurance processes without creating a separate integration layer.
Create a Detecting AI API key, store it outside the project, and add the public MCP endpoint to your client. The server authenticates with a bearer token.
https://api.detecting-ai.com/api/mcpclaude mcp add --transport http --scope user \
--header "Authorization: Bearer YOUR_API_KEY" \
detecting-ai https://api.detecting-ai.com/api/mcpIt is a remote Model Context Protocol server that lets compatible AI clients call a dedicated text detection tool with structured inputs and outputs.
Yes. The server uses Streamable HTTP and bearer authentication, which can be configured in Claude Code, Codex, and other compatible MCP clients.
It returns detailed detector analysis, the selected detector version, and the number of processed words.
No. Detection scores are probabilistic signals. They should be combined with context, policy, and human review before decisions are made.
Successful detector calls use words from the same Detecting AI API subscription and detector balance used by REST requests.
Create an API key, connect the public MCP endpoint, and keep control of every tool call from the active conversation.