slop_status檢查 app 與 Pro 狀態
在代理開始工作流程前,確認 app 已安裝、二進位檔可執行,且 Pro 已啟用。
查看 payload 與結果
工具輸入
{}結果形狀
{
"pro": true,
"version": "1.0.9"
}裝置端 AI 偵測器評分
Slop or Not MCP server 可讓 Claude、Codex、Hermes Agent、OpenClaw、Cursor 和其他代理在你的 Mac 上呼叫本機 AI 文字偵測器、AI 圖片偵測器、可讀性分析器和清理工具。
將你的 MCP 用戶端指向內建的 slop mcp 指令。使用 Pro 時,Claude、Codex、Hermes Agent、OpenClaw、Cursor 和其他代理程式可以持續執行本機檢查,不需要按每次呼叫計算 API 用量。

client 設定
安裝 Mac app、啟用 Pro,然後在你的用戶端使用 app-bundle 片段。Claude、Codex、Hermes Agent、OpenClaw 和 Cursor 都會指向同一個本機伺服器。
claude mcp add --transport stdio --scope user SlopOrNot -- "/Applications/Slop Or Not.app/Contents/MacOS/slop" mcp{
"mcpServers": {
"SlopOrNot": {
"command": "/Applications/Slop Or Not.app/Contents/MacOS/slop",
"args": ["mcp"]
}
}
}[mcp_servers.SlopOrNot]
command = "/Applications/Slop Or Not.app/Contents/MacOS/slop"
args = ["mcp"]mcp_servers:
SlopOrNot:
command: "/Applications/Slop Or Not.app/Contents/MacOS/slop"
args: ["mcp"]openclaw mcp set slopornot '{"command":"/Applications/Slop Or Not.app/Contents/MacOS/slop","args":["mcp"]}'{
"mcpServers": {
"SlopOrNot": {
"command": "/Applications/Slop Or Not.app/Contents/MacOS/slop",
"args": ["mcp"]
}
}
}工具參考
伺服器提供代理程式通常需要的六種檢查工具:狀態、文字偵測、可讀性、清理、圖片偵測,以及原始圖片評分。
slop_status在代理開始工作流程前,確認 app 已安裝、二進位檔可執行,且 Pro 已啟用。
工具輸入
{}結果形狀
{
"pro": true,
"version": "1.0.9"
}detect_text使用裝置端文字偵測器評分一段文字,並回傳本機 AI 判定、分數和可讀性指標。
工具輸入
{
"text": "<text>",
"include_readability": true,
"language_code": "en"
}結果形狀
{
"kind": "result",
"verdict": "real",
"score": 0.0,
"language": "en",
"sentence_count": 6,
"generator": null,
"readability": {
"language": "en",
"language_confidence": 0.9996,
"scores": [
{ "kind": "fleschReadingEase", "value": 75.18 },
{ "kind": "fleschKincaidGradeLevel", "value": 5.51 }
],
"stats": { "word_count": 66, "sentence_count": 6 },
"warnings": [],
"avg_words_per_sentence": 11,
"word_count": 66,
"sentence_count": 6
}
}analyze_readability計算閱讀難度指標,不執行 AI 偵測。
工具輸入
{
"text": "<text>",
"language_code": "en"
}結果形狀
{
"language": "en",
"language_confidence": 0.9996,
"scores": [
{ "kind": "fleschReadingEase", "value": 88.54 },
{ "kind": "fleschKincaidGradeLevel", "value": 2.65 }
],
"avg_words_per_sentence": 7,
"sentence_count": 5,
"word_count": 35,
"warnings": []
}clean_text在下一次偵測前,移除零寬字元、同形異義字和花俏標點。
工具輸入
{
"text": "<text>",
"remove_invisibles": true,
"remove_punctuation": true,
"remove_homoglyphs": true
}結果形狀
{
"cleaned_text": "<cleaned_text>",
"language": "en",
"removed_invisibles": 1,
"punctuation_replacements": 1,
"homoglyphs_replaced": 0,
"british_substitutions": 0
}detect_image在本機檢查 JPEG、PNG、HEIC 或 WebP 圖片位元組,讀取 C2PA 和 IPTC 來源資訊,並以裝置端模型作為 fallback。
工具輸入
{
"image_base64": "<base64>",
"recognize_text": true
}結果形狀
{
"kind": "result",
"verdict": "most_likely_ai_slop",
"score": 0.80,
"generator": null,
"recognized_text": null,
"recognized_sentence_count": null
}score_image當代理需要模型訊號,而不需要完整圖片偵測回應時,回傳原始 OmniAID 圖片分數。
工具輸入
{
"image_base64": "<base64>"
}結果形狀
{
"raw_slop_score": 0.690673828125
}驗證
重新啟動後,請你的代理執行 slop_status。預期結果是一個工具呼叫,會在沒有錯誤的情況下回報本機 app 和 Pro 狀態。
{
"pro": true,
"version": "1.0.9"
}疑難排解
GUI 代理程式可能會在你的登入 shell 之外啟動,導致指令名稱無法解析。這些片段使用已簽署的 app-bundle 路徑,讓每個用戶端都啟動同一個內建的 Slop or Not binary。
本機 API
可以,用於代理工作流程。MCP 讓 Claude、Codex、Hermes Agent、OpenClaw、Cursor 和其他 client 取得本機工具介面,而不是使用託管的 AI 偵測 API。client 會透過 stdio 將文字或圖片資料送到內建 Mac 二進位檔,檢查會在你的 Mac 上執行。
搭配代理循環使用
agentic AI Humanizer skill 不需要 Slop or Not 也能執行核心改寫和語氣匹配。當你想讓 MCP tools 對基準版本評分、在人性化前後執行 Text Cleanup、用裝置端 AI 偵測器重新評分,並顯示清理統計時,請在 Pro 啟用的情況下將它連接到 Slop or Not。你的寫作樣本會引導改寫;Slop or Not 則提供本機 AI 偵測器測量。
Slop or Not 會回傳機率判斷,而非作者的證明。結果可能會因新的 AI 模型、短段落以及經過人類大量編輯的文字而有所不同。