Sleepwalker
Server Details
AI Visibility and Content Intelligence tools for Claude and MCP-compatible agents.
- Status
- Unhealthy
- OAuth
- Not connectable
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- followanton/sleepwalker
- GitHub Stars
- 22
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
3 tool updates
- Changed
discover_sleepwalker_content_trends1 field changed- changed
Input schema / properties / extraction_mode / descriptionPrevious value: -"How Sleepwalker should retrieve page content. Leave the default for most pages; use rendered or csr if the page depends on JavaScript."New value: +"How Sleepwalker retrieves page content. These actions read the page as a fast static fetch (the same content an AI crawler sees); leave the default. Other values are accepted for compatibility but are treated as the static fetch."
- Changed
score_sleepwalker_content1 field changed- changed
Input schema / properties / extraction_mode / descriptionPrevious value: -"How Sleepwalker should retrieve page content. Leave the default for most pages; use rendered or csr if the page depends on JavaScript."New value: +"How Sleepwalker retrieves page content. These actions read the page as a fast static fetch (the same content an AI crawler sees); leave the default. Other values are accepted for compatibility but are treated as the static fetch."
- Changed
serialize_sleepwalker_page_content1 field changed- changed
Input schema / properties / extraction_mode / descriptionPrevious value: -"How Sleepwalker should retrieve page content. Leave the default for most pages; use rendered or csr if the page depends on JavaScript."New value: +"How Sleepwalker retrieves page content. These actions read the page as a fast static fetch (the same content an AI crawler sees); leave the default. Other values are accepted for compatibility but are treated as the static fetch."
1 tool update
- Changed
create_sleepwalker_visibility_run1 field changed- changed
Input schema / properties / models / descriptionPrevious value: -"Per-platform model overrides for matrix mode, e.g. {\"openai\": \"latest\", \"perplexity\": \"sonar-pro\"}. Values are model ids from list_sleepwalker_visibility_models or the keywords latest / prior / default. Platforms not listed use their default model (1 credit per probe); each non-default model has its own per-probe price from list_sleepwalker_visibility_models."New value: +"Per-platform model overrides for matrix mode, e.g. {\"openai\": \"latest\", \"perplexity\": \"sonar-pro\"}. Values are model ids from list_sleepwalker_visibility_models or the keywords latest / prior / default. Platforms not listed run their default model at that model's own price (1 credit on most platforms); every model's credits_per_probe comes from list_sleepwalker_visibility_models."
2 tool updates
- Added
cancel_sleepwalker_visibility_run - Changed
create_sleepwalker_visibility_run1 field changed- changed
Input schema / $defs / McpProbeInput / properties / model / descriptionPrevious value: -"Pin the AI model for this probe: a model id from list_sleepwalker_visibility_models, or a role keyword: latest (current flagship), prior (previous generation), default. Omit for the platform default. Each non-default model has its own per-probe credit price (varies by model, not just tier) — read credits_per_probe from list_sleepwalker_visibility_models."New value: +"Pin the AI model for this probe: a model id from list_sleepwalker_visibility_models, or a role keyword: latest (current flagship), prior (previous generation), default. Omit for the platform default. Each non-default model has its own per-probe credit price (varies by model, not just tier); read credits_per_probe from list_sleepwalker_visibility_models."
1 tool update
- Changed
create_sleepwalker_visibility_run2 fields changed- changed
Input schema / $defs / McpProbeInput / properties / model / descriptionPrevious value: -"Pin the AI model for this probe: a model id from list_sleepwalker_visibility_models, or a role keyword: latest (current flagship), prior (previous generation), default. Omit for the platform default. Non-default models cost their tier price in credits."New value: +"Pin the AI model for this probe: a model id from list_sleepwalker_visibility_models, or a role keyword: latest (current flagship), prior (previous generation), default. Omit for the platform default. Each non-default model has its own per-probe credit price (varies by model, not just tier) — read credits_per_probe from list_sleepwalker_visibility_models." - changed
Input schema / properties / models / descriptionPrevious value: -"Per-platform model overrides for matrix mode, e.g. {\"openai\": \"latest\", \"perplexity\": \"sonar-pro\"}. Values are model ids from list_sleepwalker_visibility_models or the keywords latest / prior / default. Platforms not listed use their default model (1 credit per probe); non-default models cost their tier price."New value: +"Per-platform model overrides for matrix mode, e.g. {\"openai\": \"latest\", \"perplexity\": \"sonar-pro\"}. Values are model ids from list_sleepwalker_visibility_models or the keywords latest / prior / default. Platforms not listed use their default model (1 credit per probe); each non-default model has its own per-probe price from list_sleepwalker_visibility_models."
1 tool update
- Changed
get_sleepwalker_visibility_run_status2 fields changed- added
Input schema / properties / results_limitAdded value: +{ + "anyOf": [ + { + "type": "integer" + }, + { + "type": "null" + } + ], + "default": null, + "description": "With include_results, return at most this many results. Omit for all. Use with results_offset to page large runs; results_total in ca_result reports the full count.", + "title": "Results Limit" +} - added
Input schema / properties / results_offsetAdded value: +{ + "default": 0, + "description": "With include_results, skip this many results (paging for large runs).", + "title": "Results Offset", + "type": "integer" +}
2 tool updates
- Changed
create_sleepwalker_visibility_run4 fields changed- added
Input schema / $defsAdded value: +{ + "McpProbeInput": { + "description": "One explicit AI Visibility probe: a prompt on a platform, optionally pinned to a model.", + "properties": { + "country": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "ISO country code; defaults to the run-level country.", + "title": "Country" + }, + "language": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "ISO language code; defaults to the run-level language.", + "title": "Language" + }, + "model": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Pin the AI model for this probe: a model id from list_sleepwalker_visibility_models, or a role keyword: latest (current flagship), prior (previous generation), default. Omit for the platform default. Non-default models cost their tier price in credits.", + "title": "Model" + }, + "platform": { + "description": "Platform slug or label: perplexity, openai/ChatGPT, grok/xAI, gemini.", + "title": "Platform", + "type": "string" + }, + "prompt": { + "description": "Prompt to execute on the platform.", + "title": "Prompt", + "type": "string" + }, + "target_entity": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Overrides the run-level target entity for this probe.", + "title": "Target Entity" + } + }, + "required": [ + "prompt", + "platform" + ], + "title": "McpProbeInput", + "type": "object" + } +} - added
Input schema / properties / modelsAdded value: +{ + "anyOf": [ + { + "additionalProperties": { + "type": "string" + }, + "type": "object" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Per-platform model overrides for matrix mode, e.g. {\"openai\": \"latest\", \"perplexity\": \"sonar-pro\"}. Values are model ids from list_sleepwalker_visibility_models or the keywords latest / prior / default. Platforms not listed use their default model (1 credit per probe); non-default models cost their tier price.", + "title": "Models" +} - changed
Input schema / properties / probes / anyOfPrevious value: -[ - { - "items": { - "additionalProperties": true, - "type": "object" - }, - "type": "array" - }, - { - "type": "null" - } -]New value: +[ + { + "items": { + "$ref": "#/$defs/McpProbeInput" + }, + "type": "array" + }, + { + "type": "null" + } +] - changed
Input schema / properties / probes / descriptionPrevious value: -"Explicit probe objects: {prompt, platform, model?, language?, country?, target_entity?}. Set model to pin the AI model for that probe: a catalog model id, or the keywords latest / prior / default (resolved to the platform's current model for that role). Omit model for the platform default. Use probes when prompts, models, or locales differ per platform."New value: +"Explicit probe list. Use when prompts, models, or locales differ per platform; otherwise use prompts x platforms, optionally with the models map."
- Added
list_sleepwalker_visibility_models
1 tool update
- Changed
create_sleepwalker_visibility_run1 field changed- changed
Input schema / properties / probes / descriptionPrevious value: -"Advanced explicit prompt and platform objects. Use only when prompts need per-platform control."New value: +"Explicit probe objects: {prompt, platform, model?, language?, country?, target_entity?}. Set model to pin the AI model for that probe: a catalog model id, or the keywords latest / prior / default (resolved to the platform's current model for that role). Omit model for the platform default. Use probes when prompts, models, or locales differ per platform."
2 tool updates
- Changed
list_sleepwalker_content_runs1 field changed- added
Input schema / properties / starting_afterAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Pagination cursor: pass the previous page's next_starting_after to fetch the next page.", + "title": "Starting After" +}
- Changed
list_sleepwalker_visibility_runs1 field changed- added
Input schema / properties / starting_afterAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Pagination cursor: pass the previous page's next_starting_after to fetch the next page.", + "title": "Starting After" +}
17 tool updates
- Changed
create_sleepwalker_content_run6 fields changed- added
Input schema / properties / analysis_depth / descriptionAdded value: +"Use score for a faster scoring run or full for the complete Content Intelligence result." - added
Input schema / properties / country / descriptionAdded value: +"Market context for analysis. Use ISO country codes such as US, NL, or DE." - added
Input schema / properties / idempotency_key / descriptionAdded value: +"Optional stable key for retries. Reusing it helps avoid duplicate queued runs." - added
Input schema / properties / language / descriptionAdded value: +"Language for analysis and generated text. Use ISO language codes such as en, nl, or de." - added
Input schema / properties / test_id / descriptionAdded value: +"Existing saved Content Intelligence test to rerun. Send either test_id or url, not both." - added
Input schema / properties / url / descriptionAdded value: +"Public URL for a new direct Content Intelligence run. Send either url or test_id, not both."
- Changed
create_sleepwalker_visibility_run9 fields changed- added
Input schema / properties / competitors / descriptionAdded value: +"Optional competing brands or entities to track alongside the target." - added
Input schema / properties / country / descriptionAdded value: +"Market context for analysis. Use ISO country codes such as US, NL, or DE." - added
Input schema / properties / idempotency_key / descriptionAdded value: +"Optional stable key for retries. Reusing it helps avoid duplicate queued runs." - added
Input schema / properties / language / descriptionAdded value: +"Language for analysis and generated text. Use ISO language codes such as en, nl, or de." - added
Input schema / properties / platforms / descriptionAdded value: +"AI platforms to query. Use perplexity, openai or ChatGPT, grok or xAI, and gemini." - added
Input schema / properties / probes / descriptionAdded value: +"Advanced explicit prompt and platform objects. Use only when prompts need per-platform control." - added
Input schema / properties / prompts / descriptionAdded value: +"Questions to ask across selected AI platforms." - added
Input schema / properties / target_entity / descriptionAdded value: +"Brand, product, person, or organization to track in AI answers." - added
Input schema / properties / url / descriptionAdded value: +"Public page URL to analyze."
- Changed
discover_sleepwalker_content_trends4 fields changed- added
Input schema / properties / country / descriptionAdded value: +"Market context for analysis. Use ISO country codes such as US, NL, or DE." - added
Input schema / properties / extraction_mode / descriptionAdded value: +"How Sleepwalker should retrieve page content. Leave the default for most pages; use rendered or csr if the page depends on JavaScript." - added
Input schema / properties / language / descriptionAdded value: +"Language for analysis and generated text. Use ISO language codes such as en, nl, or de." - added
Input schema / properties / url / descriptionAdded value: +"Public page URL to analyze."
- Changed
get_sleepwalker_consistent_recommendations3 fields changed- added
Input schema / properties / min_frequency / descriptionAdded value: +"Minimum number of appearances required for a recommendation to count as recurring." - added
Input schema / properties / runs / descriptionAdded value: +"Number of recent runs to compare." - added
Input schema / properties / test_id / descriptionAdded value: +"Saved test ID."
- Changed
get_sleepwalker_content_run_status2 fields changed- added
Input schema / properties / include_result / descriptionAdded value: +"Include the full result payload. Prefer false while polling queued or running work." - added
Input schema / properties / run_id / descriptionAdded value: +"Sleepwalker run ID returned by a create or list tool."
- Changed
get_sleepwalker_prompt_response7 fields changed- added
Input schema / properties / include_citations / descriptionAdded value: +"Include citation details when available." - added
Input schema / properties / max_chars / descriptionAdded value: +"Maximum number of characters to return." - added
Input schema / properties / offset / descriptionAdded value: +"Character offset for paginating long content." - added
Input schema / properties / platform / descriptionAdded value: +"Platform filter when selecting a response by platform and prompt index." - added
Input schema / properties / prompt_index / descriptionAdded value: +"Prompt position within the selected platform." - added
Input schema / properties / result_index / descriptionAdded value: +"Index in the flattened AI Visibility result list." - added
Input schema / properties / run_id / descriptionAdded value: +"Sleepwalker run ID returned by a create or list tool."
- Changed
get_sleepwalker_reports_by_url4 fields changed- added
Input schema / properties / days / descriptionAdded value: +"Lookback window in days." - added
Input schema / properties / limit / descriptionAdded value: +"Maximum number of items to return." - added
Input schema / properties / test_type / descriptionAdded value: +"Optional report type filter. Use content_intelligence or ai_visibility." - added
Input schema / properties / url / descriptionAdded value: +"URL to search for in saved tests and reports."
- Changed
get_sleepwalker_run_result1 field changed- added
Input schema / properties / run_id / descriptionAdded value: +"Sleepwalker run ID returned by a create or list tool."
- Changed
get_sleepwalker_summaries5 fields changed- added
Input schema / properties / brand_name / descriptionAdded value: +"Optional brand or entity filter." - added
Input schema / properties / days / descriptionAdded value: +"Lookback window in days." - added
Input schema / properties / limit / descriptionAdded value: +"Maximum number of items to return." - added
Input schema / properties / test_id / descriptionAdded value: +"Optional saved test ID filter." - added
Input schema / properties / test_type / descriptionAdded value: +"Optional report type filter. Use content_intelligence or ai_visibility."
- Changed
get_sleepwalker_test_results2 fields changed- added
Input schema / properties / limit / descriptionAdded value: +"Maximum number of items to return." - added
Input schema / properties / test_id / descriptionAdded value: +"Saved test ID."
- Changed
get_sleepwalker_visibility_run_status3 fields changed- added
Input schema / properties / include_probes / descriptionAdded value: +"Include probe-level progress for an AI Visibility run." - added
Input schema / properties / include_results / descriptionAdded value: +"Include full AI responses and citations. Prefer false while polling queued or running work." - added
Input schema / properties / run_id / descriptionAdded value: +"Sleepwalker run ID returned by a create or list tool."
- Changed
list_sleepwalker_content_runs2 fields changed- added
Input schema / properties / limit / descriptionAdded value: +"Maximum number of items to return." - added
Input schema / properties / status / descriptionAdded value: +"Optional status filter. Common values are queued, running, completed, failed, and cancelled."
- Changed
list_sleepwalker_tests3 fields changed- added
Input schema / properties / brand_name / descriptionAdded value: +"Optional brand or entity filter." - added
Input schema / properties / limit / descriptionAdded value: +"Maximum number of items to return." - added
Input schema / properties / test_type / descriptionAdded value: +"Optional report type filter. Use content_intelligence or ai_visibility."
- Changed
list_sleepwalker_visibility_runs2 fields changed- added
Input schema / properties / limit / descriptionAdded value: +"Maximum number of items to return." - added
Input schema / properties / status / descriptionAdded value: +"Optional status filter. Common values are queued, running, completed, failed, and cancelled."
- Changed
score_sleepwalker_content6 fields changed- added
Input schema / properties / country / descriptionAdded value: +"Market context for analysis. Use ISO country codes such as US, NL, or DE." - added
Input schema / properties / extraction_mode / descriptionAdded value: +"How Sleepwalker should retrieve page content. Leave the default for most pages; use rendered or csr if the page depends on JavaScript." - added
Input schema / properties / industry / descriptionAdded value: +"Optional industry context for Content Intelligence scoring." - added
Input schema / properties / language / descriptionAdded value: +"Language for analysis and generated text. Use ISO language codes such as en, nl, or de." - added
Input schema / properties / trends / descriptionAdded value: +"Optional trends from discover_sleepwalker_content_trends." - added
Input schema / properties / url / descriptionAdded value: +"Public page URL to analyze."
- Changed
serialize_sleepwalker_page_content4 fields changed- added
Input schema / properties / extraction_mode / descriptionAdded value: +"How Sleepwalker should retrieve page content. Leave the default for most pages; use rendered or csr if the page depends on JavaScript." - added
Input schema / properties / max_chars / descriptionAdded value: +"Maximum number of characters to return." - added
Input schema / properties / offset / descriptionAdded value: +"Character offset for paginating long content." - added
Input schema / properties / url / descriptionAdded value: +"Public page URL to analyze."
- Changed
suggest_sleepwalker_visibility_prompts4 fields changed- added
Input schema / properties / brand_name / descriptionAdded value: +"Brand or entity the prompts should track." - added
Input schema / properties / country / descriptionAdded value: +"Market context for analysis. Use ISO country codes such as US, NL, or DE." - added
Input schema / properties / language / descriptionAdded value: +"Language for analysis and generated text. Use ISO language codes such as en, nl, or de." - added
Input schema / properties / url / descriptionAdded value: +"Public page URL to analyze."
17 tool updates
- First observed
create_sleepwalker_content_run - First observed
create_sleepwalker_visibility_run - First observed
discover_sleepwalker_content_trends - First observed
get_sleepwalker_consistent_recommendations - First observed
get_sleepwalker_content_run_status - First observed
get_sleepwalker_prompt_response - First observed
get_sleepwalker_reports_by_url - First observed
get_sleepwalker_run_result - First observed
get_sleepwalker_summaries - First observed
get_sleepwalker_test_results - First observed
get_sleepwalker_visibility_run_status - First observed
list_sleepwalker_content_runs - First observed
list_sleepwalker_tests - First observed
list_sleepwalker_visibility_runs - First observed
score_sleepwalker_content - First observed
serialize_sleepwalker_page_content - First observed
suggest_sleepwalker_visibility_prompts
Frequently Asked Questions
Claiming proves that you control a remote MCP connector. It does not move, proxy, or interrupt the server.
Open the connector listing, choose Claim ownership, and sign in to Glama.
Complete one verification method:
GitHub identity — fastest for official registry listings. For a namespace such as
io.github.alice/server, link the matching GitHub user, then choose Claim with GitHub. An organization namespace such asio.github.acme/serveralso needs that organization to have installed the Glama AI GitHub App and approved its permissions, because GitHub discloses organization membership only to apps it has installed. Use HTTP or DNS when it has not.HTTP challenge — works when you can deploy a public file. Generate a token, publish the exact JSON Glama shows at
/.well-known/glama.jsonon the same origin as the connector, then choose Check HTTP challenge.DNS challenge — works when you control DNS but cannot change the server. Generate a token, create the exact TXT record Glama shows, wait for it to propagate, then choose Check DNS challenge.
After verification, Glama sends a confirmation email and gives you access to listing details, thumbnails, health checks, and analytics. Keep the HTTP file or DNS record in place: Glama periodically checks it and ownership remains verified while the token is discoverable.
The HTTP ownership file has this structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"claim": "glama_claim_..."
}Claim tokens are opaque, stable, and bound to the signed-in Glama account. They contain no email address or other personal information. If Glama can no longer discover a verified HTTP or DNS token, it starts a seven-day grace period before removing claim-based access. Restore the same token during that period to keep ownership verified. Never publish an email address, Glama session token, GitHub token, or connector credential as ownership proof.
If verification fails, confirm that you copied the current token exactly. The HTTP file must be public, return valid JSON with a successful HTTP response, and stay on the connector's origin. DNS changes may need more time to propagate. A claim cannot transfer to a different origin or hostname: if the connector target changes, Glama starts the grace period and the new target must be claimed separately after the previous claim is released.
For a connector linked to the official MCP Registry, registry updates continue to replace its name, description, and URL by default. After claiming, open Manage connector and enable Use Glama listing details as the source of truth if edits made on Glama should be preserved. Categories and thumbnails are always managed on Glama; registry linkage and technical connection settings continue to sync.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
To improve your MCP server's ranking:
Claim ownership of the server listing
Complete the server profile with an accurate description and thumbnail
Provide a test profile so Glama can connect to and evaluate the server
Keep tool definitions clear and complete to earn a high Tool Definition Quality Score (TDQS)
Route real usage through the Glama Gateway; more recorded successful server uses also improve the ranking
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Connectors
AI visibility & recommendation monitoring for ChatGPT, Claude, Gemini & Perplexity.
AI-visibility monitoring for your brand across ChatGPT, Claude, Perplexity & Gemini.
100+ MCP tools for AI agents: content metadata, trade intelligence, business-expertise analysis.
Build and manage AI-native customer support agents from Claude or any MCP client.
Related MCP Servers
- FlicenseNot gradedqualityAmaintenanceProvides real-time monitoring of AI agents, context, usage limits, workflows, files, Git, tests, builds, errors, secrets, and model-economy advice for tools like Claude Code, Codex, and Cursor, with 30 MCP tools for comprehensive observability.1-
- AlicenseAqualityBmaintenanceProvides prompt injection detection, PII/secrets redaction, and an audit trail for AI agents via MCP tools.4MIT

flexorch-mcpofficial
AlicenseAqualityAmaintenanceEnables Claude and other MCP-compatible agents to process documents, extract structured data, detect PII, and export LLM-ready datasets through natural language tool calls.81MIT- AlicenseNot gradedqualityDmaintenanceEnables AI agents to run brand-visibility audits by querying multiple AI engines, generating competitive leaderboards, and identifying growth opportunities. Integrates with any MCP-capable client to measure and act on brand discoverability in AI recommendations.MIT
Glama MCP Gateway
Add one secure layer between your agents and this server.
TDQS
Tools are clearly separated into Content Intelligence and AI Visibility domains, with descriptions distinguishing similar operations. However, the large number of 'get' tools (e.g., get_sleepwalker_summaries, get_sleepwalker_test_results) could cause minor confusion despite clear descriptions.
All tools follow a consistent verb_sleepwalker_noun pattern in snake_case, with verbs like create, get, list, cancel, etc. No deviations or mixed conventions.
19 tools is on the higher side but still reasonable for a server covering two distinct areas (AI Visibility and Content Intelligence). Each tool serves a specific purpose, though some could be consolidated (e.g., get_sleepwalker_content_run_status and get_sleepwalker_visibility_run_status are separate but similar).
The tool set covers core workflows for both domains, but lacks CRUD operations for tests (no create_test, delete_test, update_test). Also missing delete for runs. These gaps may require agents to work around limitations.