Skip to content

useglimps.com

Strong technical baseline

What should the prompt cover?

12 findings · 5 selected

Failures (7)

Warnings (5)

Task

What does useglimps.com do and who is it for? Explain it back to me.

Waiting for the agent’s first step…

Agents can access the public site

These checks describe whether an ordinary agent can enter, read, and operate the public site.

  • Agents can reach the site

    Crawler access and bot defenses.

    2 / 2 passed
  • Core content is available

    Useful content remains accessible without a fragile browser-only path.

    2 / 2 passed
  • Navigation fails safely

    Redirects and missing pages give agents a recoverable path.

    2 / 2 passed
  • Controls are understandable

    Forms and interactive controls expose usable names and structure.

    3 / 3 passed

Evaluated surfaces have material gaps

The public website is always evaluated. Optional surfaces appear when the scan finds positive evidence that they apply.

Public website

Strong

86%

15 of 18 mature checks passed

API

Needs work

60%

5 of 12 mature checks passed

Authentication

Strong

100%

3 of 3 mature checks passed

MCP

Blocked

0%

0 of 2 mature checks passed

Fix these gaps first

Critical access gaps come first, followed by other applicable readiness gaps.

  1. 01

    MCP resources exposed

    If your MCP server advertises the resources capability in its initialize handshake, make sure resources/list returns at least one resource. If you don't intend to expose resources, omit the capability - the check returns na with no penalty for tool-only servers. Quality of the resources you do return is scored separately by mcp-resource-quality.

    Other readiness checks
  2. 02

    Developer resource discoverability

    Make your developer resources (API docs, OpenAPI spec, auth docs, webhooks, MCP server) discoverable by name. Publish them at predictable URLs, list them in llms.txt, and include your product name in page titles and headings so search engines surface them for name-based queries.

    Other readiness checks
  3. 03

    Brand name discoverability

    Make sure a clean search for your brand name returns your own domain in the top results. If it does not, your brand may be too generic, conflict with a more established term, or not yet indexed. Strengthen brand-name search by claiming consistent NAP across listings, earning press mentions that link to the canonical domain, and avoiding redirect chains that mask the apex domain in search results.

    Other readiness checks
  4. 04

    MCP server / manifest

    Build an MCP (Model Context Protocol) server exposing your API as tools. Use Streamable HTTP transport for full score. This lets Claude, ChatGPT, and other AI agents call your product natively.

    Other readiness checks
  5. 05

    REST typed error model

    Document your error responses in your OpenAPI spec: give 4xx and 5xx responses a typed error schema (or use RFC 9457 application/problem+json). A consistent error object with a machine-readable code and a human-readable message lets agents handle failures without guessing.

    Other readiness checks

Audit the checks behind the score

Applicable evidence is grouped by how it contributes to this preview model. Bonus checks appear only when they add points.

Essential11 of 12 passed · 73.3 / 80 points
  • Content without JavaScriptPassed

    7775 chars, semantic headings (H1 + 12 H2s + 20 H3s), 5.5% content ratio

    Recommendation

    Server-side render your homepage so AI crawlers see meaningful content without JavaScript. Ensure an H1 and 500+ chars of text in raw HTML.

  • Not blocked by bot detectionPassed

    Site accessible to 6 AI agent user-agents

    Recommendation

    Allowlist known AI agent User-Agents (ChatGPT-User, ClaudeBot, Google-Extended, DeepSeekBot) in your WAF or bot-detection rules.

  • Redirect hygienePassed

    No meta-refresh stubs, JavaScript-redirect stubs, or cross-domain hops across 6 checked pages

    Recommendation

    Replace meta-refresh and JavaScript-only redirects with real HTTP 301/302 redirects. Non-JS agents never execute location.href or wait for a meta refresh - they see only the stub page. Verify with curl -sI <url> - you should see a Location header, not a 200 with a near-empty body.

  • Content behind authPassed

    All 5 sampled pages are publicly readable (5 with substantive content)

    Recommendation

    Serve your content pages without a login wall. Agents cannot complete auth flows while browsing - a 401/403 or a login-form page is invisible content. Keep public documentation public; if some content must stay gated, publish an ungated summary so agents can still represent it.

  • OpenAPI spec publishedPassed

    OpenAPI spec found at https://useglimps.com/openapi.json (version: 3.1.0)

    Recommendation

    Publish an OpenAPI (Swagger) specification at /openapi.json or /api/openapi.yaml. This is how agents understand your API surface automatically.

  • Markdown content negotiation (acceptmarkdown.com)Passed

    Canonical URL serves text/markdown and text/html via Accept negotiation with Vary: Accept

    Recommendation

    On the responses that serve text/markdown via Accept negotiation, add Accept to the Vary header (Vary: Accept, Accept-Encoding). Without it, CDNs can serve the cached HTML variant to an agent asking for markdown (or vice versa), depending on which variant landed in cache first.

  • Agent crawler reachabilityPassed

    Reachable to all major AI crawlers - ChatGPT-User: reachable, ClaudeBot: reachable, Google-Extended: reachable, ora-agent: reachable, DeepSeekBot: reachable

    Recommendation

    Verify that major agent User-Agents can reach the homepage. If your WAF or bot rules block them, remove or narrow the blocking rule. Add an allow rule only when your security setup denies them by default.

  • OAuth 2.0 supportPassed

    OAuth authorization server metadata at https://useglimps.com (issuer=https://useglimps.com/)

    Recommendation

    Implement OAuth 2.0 for API authentication. Publish your authorization server metadata at /.well-known/oauth-authorization-server.

  • Scoped permissionsPassed

    Scoped permissions documented at https://useglimps.com/developer-resources.md

    Recommendation

    Support scoped API permissions (OAuth scopes or API key roles) so agents can request only the access they need.

  • JSON error responsesPassed

    API returns JSON error responses (401 at https://useglimps.com/api/v1/orank-probe-test)

    Recommendation

    Return structured JSON error responses with error codes, messages, and resolution hints. Agents can't parse HTML error pages.

  • MCP resources exposedFailed

    MCP server advertises resources capability but resources/list returned none

    Recommendation

    If your MCP server advertises the resources capability in its initialize handshake, make sure resources/list returns at least one resource. If you don't intend to expose resources, omit the capability - the check returns na with no penalty for tool-only servers. Quality of the resources you do return is scored separately by mcp-resource-quality.

  • Agent-friendly 404sPassed

    Nonexistent paths return HTTP 404 with markdown guidance for agents - the strongest 404 contract

    Recommendation

    Return a real HTTP 404 (or 410) status for nonexistent paths - never a 200 with your app shell, which makes agents believe every path exists. For full credit, give the 404 response a short markdown body pointing agents at your sitemap, llms.txt, or docs index. Verify with curl -s -o /dev/null -w "%{http_code}" https://yourdomain.com/some-path-that-does-not-exist - it must print 404.

Recommended12 of 23 passed · 12.8 / 20 points
  • Developer resource discoverabilityFailed

    Agent searched for "glimps" developer resources but found nothing relevant

    Recommendation

    Make your developer resources (API docs, OpenAPI spec, auth docs, webhooks, MCP server) discoverable by name. Publish them at predictable URLs, list them in llms.txt, and include your product name in page titles and headings so search engines surface them for name-based queries.

  • Brand name discoverabilityFailed

    "Glimps" search returned 9 results but domain did not appear - brand may be too generic or not indexed

    Recommendation

    Make sure a clean search for your brand name returns your own domain in the top results. If it does not, your brand may be too generic, conflict with a more established term, or not yet indexed. Strengthen brand-name search by claiming consistent NAP across listings, earning press mentions that link to the canonical domain, and avoiding redirect chains that mask the apex domain in search results.

  • Sitemap existsPassed

    Valid sitemap found at https://useglimps.com/sitemap.xml with 140 entries

    Recommendation

    Add a valid XML sitemap at /sitemap.xml listing all indexable URLs. Include lastmod dates and keep it under 50MB.

  • Content efficiencyPassed

    Content efficiency: 7.15% (10132 text chars / 138KB HTML)

    Recommendation

    Reduce markup overhead so readable text is at least 5% of your HTML. Strip unused inline scripts/styles, server-render content instead of shipping large JSON hydration blobs, and keep wrapper nesting shallow.

  • JSON-LD structured dataPassed

    Rich JSON-LD identity: SoftwareApplication with name, description, url, and category/offers (2 block(s))

    Recommendation

    Add JSON-LD structured data to your homepage using the identity type that matches your site - SoftwareApplication for products, Organization or LocalBusiness for companies, Person for personal sites, Article for blogs - with name, description, url, and type-appropriate fields (offers, sameAs, author) so AI can parse your identity programmatically.

  • Public API/docs linked from homepagePassed

    Documentation site found at https://docs.useglimps.com

    Recommendation

    Publish API documentation at a discoverable URL (/docs, /api, /developers). Include authentication, endpoints, and example requests.

  • Agent instruction / when-to-usePassed

    When-to-use guidance found in llms.txt

    Recommendation

    Tell agents when to reach for you: add a 'when to use this' section to your llms.txt (or a dedicated agent-instructions file) that names your best-fit use cases and how an agent should call you. Be specific about the jobs you are right for - generic marketing copy does not read as guidance.

  • Metadata completenessPassed

    All metadata signals present: canonical URL, lang="nl", og:image, og:type

    Recommendation

    Add all four signals to your homepage: , , , and . Agents use these for entity resolution and attribution.

  • Organization schema completenessPartial (50%)

    Organization schema found but missing: contactPoint, address

    Recommendation

    Add Organization JSON-LD that includes both contactPoint (with email/phone and contactType) and address (PostalAddress). This lets AI verify your business legitimacy and answer contact queries.

  • Trust anchor pagesPassed

    All trust anchor pages verified: About, Contact, Privacy

    Recommendation

    Publish real /about, /contact, and /privacy pages with at least 500 characters of content each. These are the pages AI agents check to verify your business is legitimate before recommending you.

  • Page token budgetPassed

    All 6 measured pages fit an agent context budget (largest ~2K tokens)

    Recommendation

    Keep each page's extracted text under ~100K characters (~25K tokens) so it fits an agent's context window without truncation. Split oversized reference pages into focused per-topic documents and link them from an index. Check a page with curl -s <url> | wc -c and remember agents read the extracted text, not the raw HTML.

  • Code fence validityPassed

    Code fences balanced across 1 markdown document

    Recommendation

    Close every fenced code block (``` or ~~~) in your served markdown. CommonMark treats everything after an unclosed fence as code, so an agent parsing the document silently loses the rest of it. Count fence lines per file - the total must be even.

  • Developer portalPassed

    Developer portal found at /docs

    Recommendation

    Create a developer portal at /developers with API keys, documentation, quickstart guides, and a sandbox environment.

  • Public API with reachable endpointsPassed

    REST API documentation found at https://useglimps.com/developer-resources.md. Best-of-protocols score: 7/7.

    Recommendation

    Expose a public REST or GraphQL API. AI agents need programmatic access - not just a web UI - to integrate with your product.

  • Agent onboarding frictionPassed

    Low friction onboarding: self-serve key generation, sandbox/test environment, self-serve registration endpoint at /register

    Recommendation

    Offer a free tier or trial, self-serve API key generation, and a sandbox environment. Agents can't fill out 'contact sales' forms.

  • MCP server / manifestFailed

    No MCP server or manifest found

    Recommendation

    Build an MCP (Model Context Protocol) server exposing your API as tools. Use Streamable HTTP transport for full score. This lets Claude, ChatGPT, and other AI agents call your product natively.

  • Rate limit response headersFailed

    No REST rate-limit headers found on probed endpoints

    Recommendation

    Return standard rate-limit headers on your API responses (the RFC RateLimit headers, plus Retry-After on a 429) so agents can self-throttle in real time, and document the conventions alongside your API.

  • REST typed error modelFailed

    No typed error model found in OpenAPI spec

    Recommendation

    Document your error responses in your OpenAPI spec: give 4xx and 5xx responses a typed error schema (or use RFC 9457 application/problem+json). A consistent error object with a machine-readable code and a human-readable message lets agents handle failures without guessing.

  • REST versioning / deprecation policyFailed

    No API versioning strategy found - add URL path versioning (/v1/, /v2/) or a versioned header parameter in your OpenAPI spec

    Recommendation

    Declare a versioning policy agents can rely on: version your API (in the URL path or a version header) and publish how you signal deprecation (a Sunset/Deprecation header or a documented timeline). Agents avoid integrating against a surface that can change without warning.

  • CLI tool availablePartial (67%)

    CLI tool mentioned in llms.txt

    Recommendation

    Publish an official CLI tool on npm, PyPI, or Homebrew. A CLI lets agents and developers script interactions with your product without building API integrations from scratch.

  • REST response schema coveragePartial (50%)

    100% of operations define response schemas (target: >60% with application/json content type)

    Recommendation

    Define typed JSON response schemas for every endpoint in your OpenAPI spec. Agents rely on these to know what fields they will get back; missing or partial schemas force trial-and-error.

  • API schema complexity analysisPartial (50%)

    REST: schema found (5 operations) but partially documented

    Recommendation

    Make your API spec self-describing: a unique operationId and a description on every operation, typed parameters, and response schemas. For GraphQL, a fully typed schema with a documented cost or rate limit reads best.

  • Function calling compatibilityPartial (50%)

    Partial compatibility: 5/5 operationIds, 0/5 typed schemas

    Recommendation

    Ensure API endpoints have unique operation IDs, typed schemas, and descriptions compatible with LLM function-calling formats.

Bonus signals32 positive · +5 points
  • ChatGPT app listedPassed

    ChatGPT plugin manifest found: "Glimps"

    Recommendation

    Submit your app to the ChatGPT apps / connectors directory (the apps-in-ChatGPT surface) so ChatGPT users can discover and use your product.

  • Agent discovery filePassed

    Agent Skills index (agentskills.io) found at /.well-known/agent-skills/index.json with 1 skill(s)

    Recommendation

    Publish an Agent Skills index at /.well-known/agent-skills/index.json that lists your capabilities, with each skill carrying a name and a description so agents can find and parse what you offer.

  • Agent Skills index conformance (v0.2.0)Partial (50%)

    Index $schema is "https://agentskills.io/schemas/agent-skills-index-v0.2.json" - unknown version, expected https://schemas.agentskills.io/discovery/0.2.0/schema.json

    Recommendation

    Upgrade /.well-known/agent-skills/index.json to the v0.2.0 schema: add "$schema": "https://schemas.agentskills.io/discovery/0.2.0/schema.json", and give every entry a type (skill-md or archive), url, and digest. Use "digest": "sha256:<64 lowercase hex chars>" (e.g. "digest": "sha256:a3f1...") - a bare "sha256": "" field is also accepted. Compute the value from the artifact's raw bytes.

  • MCP well-known discoveryPassed

    MCP server discoverable via server-card.json at /.well-known/mcp/

    Recommendation

    Serve your MCP server at /.well-known/mcp, publish a server-card.json at /.well-known/mcp/server-card.json, or reference it in llms.txt so agents can discover it automatically without manual URL input.

  • Sitemap freshness (lastmod)Passed

    100% of 140 sampled sitemap entries carry lastmod; newest is 14 day(s) old

    Recommendation

    Add dates (W3C datetime, e.g. 2026-08-01) to your sitemap entries and update them when content actually changes. Aim for lastmod on at least half your entries with the newest within the last year. Verify with curl https://yourdomain.com/sitemap.xml | grep lastmod.

  • llms.txt existsPassed

    Found the llms.txt at https://useglimps.com/llms.txt.

    Recommendation

    Create an llms.txt file at your domain root (/llms.txt) - the AI equivalent of robots.txt. Write at least 100 characters of real content: what your product is, what it does, and links to your key docs. Then verify it with curl https://yourdomain.com/llms.txt - you should see your text, not HTML. If your app returns its homepage for every URL (common with single-page apps), add a static file route so the raw text is served. A placeholder with just a heading earns no credit.

  • llms.txt formattingPassed

    The llms.txt is well-formatted: 54 lines with markdown links, 5,888 characters in total.

    Recommendation

    Format your llms.txt as a navigation index: start with a markdown heading, include markdown links to deeper resources, and keep it under 30,000 characters. If you have more to say, move long-form content into /llms-full.txt or per-section files (e.g. /docs/llms.txt, /api/llms.txt) and link to them from the main index.

  • Schema type breadthPartial (50%)

    Some extended schema types found: FAQPage - add FAQPage, Service, or AggregateRating for full coverage

    Recommendation

    Expand your JSON-LD beyond Organization/WebSite. Add FAQPage for common questions, Service or Product for offerings, AggregateRating or Review for social proof, and BreadcrumbList for navigation context.

  • llms.txt links resolvePassed

    All 5 probed llms.txt links resolve to real content

    Recommendation

    Make every link your llms.txt declares resolve to real content. Verify each one with curl -L <url> - you should see the linked document, not your homepage. If your app returns the homepage shell for unknown paths (common with single-page apps), a 200 status is not proof: check the body. Fix or remove any dead link; agents that follow the index treat a broken link as a dead end.

  • Markdown alternate linkPassed

    Markdown alternate advertised and verified: https://useglimps.com/llms.txt serves markdown

    Recommendation

    Advertise a markdown twin of each page with in the HTML head (or an equivalent Link response header), and make sure the advertised URL actually serves markdown - an advertisement pointing at HTML is worse than none. Verify the target with curl -s <href> and check the body starts with a heading, not .

  • API catalog (RFC 9727)Partial (50%)

    api-catalog linkset[0] has no 'item' entries

    Recommendation

    Publish an API catalog at /.well-known/api-catalog per RFC 9727. Serve it with Content-Type: application/linkset+json;profile="https://www.rfc-editor.org/info/rfc9727" and include a 'linkset' array with item entries pointing to your OpenAPI specs and service descriptions.

  • Markdown agent docsPassed

    Returns markdown when requested via Accept header

    Recommendation

    Pick one: (a) return Content-Type: text/markdown on GET when the request sends Accept: text/markdown, or (b) publish a static /llms.md, /auth.md, or /agents.md file at your root with real markdown content. Option (b) is usually a single static file. This is the cold-discovery path for agents that land at your homepage from web search without reading llms.txt first.

  • MCP tool descriptionsPassed

    All 3 tools on docs MCP have detailed descriptions (>= 30 chars)

    Recommendation

    Add detailed descriptions (>= 20 chars) to every MCP tool. Agents use these to decide which tool to call - vague descriptions lead to wrong tool selection.

  • MCP parameter schemasPassed

    3/3 tools on docs MCP have parameter schemas

    Recommendation

    Define inputSchema with typed properties and required arrays for each tool. Agents need schema info to construct valid tool calls without guessing.

  • MCP server identityPassed

    docs MCP identifies as "Glimps Documentation" v1.0.0 with instructions

    Recommendation

    Set server name, version, and instructions in your MCP server's initialize response. Instructions help agents understand your server's purpose and constraints.

  • MCP tool listingPassed

    docs MCP exposes 3 tool(s) - focused docs surface

    Recommendation

    Expose 3+ tools via your MCP server's tools/list endpoint. Cover your core API surface - agents need tools for read, write, and search operations.

  • MCP tool namingPassed

    All 3 tool names follow consistent convention, descriptive, and non-generic

    Recommendation

    Use consistent naming conventions (snake_case or camelCase) for all MCP tools. Names should be descriptive (>= 4 chars) and not generic (avoid 'run', 'get', 'do').

  • MCP auth mechanismPassed

    product MCP requires authentication with OAuth metadata discovery

    Recommendation

    Protect your MCP server with OAuth 2.0 authentication. Publish authorization server metadata at /.well-known/oauth-authorization-server for automatic agent auth flows.

  • MCP OAuth metadataPassed

    RFC 8414 OAuth metadata for product MCP: issuer=https://useglimps.com/, auth and token endpoints present

    Recommendation

    Publish RFC 8414 authorization server metadata with issuer, authorization_endpoint, and token_endpoint so agents can authenticate without hardcoded URLs.

  • MCP PKCE S256 supportPassed

    OAuth metadata for product MCP supports PKCE S256 code challenge

    Recommendation

    Support PKCE with S256 code challenge method in your OAuth server. Add 'S256' to code_challenge_methods_supported in your authorization server metadata.

  • Agent auth discovery metadataPartial (33%)

    Only AS metadata present; spec calls for both PRM and AS metadata

    Recommendation

    Publish RFC 9728 protected-resource metadata at /.well-known/oauth-protected-resource on your resource server (the host that actually serves the API, e.g. api.) with resource and authorization_servers. Publish RFC 8414 authorization-server metadata at /.well-known/oauth-authorization-server on the AS origin, and include the WorkOS auth.md agent_auth block with register_uri, identity_types_supported drawn from the spec enum (anonymous, identity_assertion - variants like verified_email or urn:ietf:params:oauth:token-type:id-jag belong inside identity_assertion.assertion_types_supported, not at the top level), and a sibling per-type block for each advertised type (anonymous.credential_types_supported; identity_assertion.assertion_types_supported + credential_types_supported) so agents can look up the request shape. Cross-link by listing the AS origin in PRM authorization_servers, and point agent_auth.skill back at your published /auth.md. Spec: https://workos.com/auth-md.

  • Agent auth WWW-Authenticate hintPassed

    401 at /mcp with spec-shaped WWW-Authenticate hint: Bearer realm="Glimps MCP", resource_metadata="https://useglimps.com/.well-known/oauth-protected-resource/mcp", scope="gl

    Recommendation

    Return a 401 carrying a spec-shaped WWW-Authenticate: Bearer resource_metadata="<your protected-resource metadata URL>" header on your API's primary entry points, so an agent learns your auth requirements from one request instead of hunting for the well-known document. Point the metadata URL at /.well-known/oauth-protected-resource on the host that serves the API. Spec: https://workos.com/auth-md.

  • MCP error handlingPassed

    docs MCP returns structured JSON-RPC errors with code and message

    Recommendation

    Return structured JSON-RPC errors (with code and message) when agents call invalid tools or pass bad arguments. Don't crash or return empty responses.

  • MCP modern transportPassed

    docs MCP uses modern Streamable HTTP transport

    Recommendation

    Upgrade your MCP server from legacy SSE to Streamable HTTP transport. Streamable HTTP is the current standard and supports bidirectional communication.

  • WebMCP supportPassed

    Imperative WebMCP API detected (navigator.modelContext in script bundle /assets/index-Ct_qfd-h.js). Note: the entry point moved to document.modelContext - Chrome 150+ deprecates the navigator.modelContext alias.

    Recommendation

    Expose in-page tools via WebMCP, the W3C draft standard for browser-resident AI agents. Add toolname and tooldescription attributes to your action forms - they survive into server-rendered HTML, so scanners and agents can see them - and register richer tools from client-side JS with document.modelContext.registerTool() (navigator.modelContext is the deprecated pre-Chrome-150 alias). Chrome ships WebMCP in 157 after the 149-156 origin trial.

  • MCP tool annotationsPassed

    docs MCP: 3/3 tools have behavioral annotations

    Recommendation

    Add behavioral annotations (readOnlyHint, destructiveHint) to your MCP tools. Agents use these to avoid destructive actions without user confirmation.

  • MCP server-card.jsonPassed

    MCP server card found at https://glimps.main-kill-isr.mintlify.me/.well-known/mcp/server-card.json (2 tools advertised)

    Recommendation

    Publish a server card at /.well-known/mcp/server-card.json describing your MCP server. Required fields: name, description, version, serverUrl, tools[]. This lets agents preview your server before opening a transport connection.

  • Product + docs MCP coveragePassed

    You run both: a product MCP server (https://useglimps.com/mcp) for actions and a docs MCP server (https://docs.useglimps.com/mcp) for documentation.

    Recommendation

    Beyond your product MCP server, expose a documentation MCP surface so agents can pull your docs and reference material over the same protocol they use to act. Covering both the 'do' and the 'learn' surfaces over MCP earns this.

  • Accessible document structurePassed

    Server HTML is a well-structured document (main=true, landmarks=3/4, h1=1, maxHeadingSkip=2).

  • Native interactive controlsPassed

    121 native controls, 0 non-native div-soup affordances (100% native).

  • Accessible names on controlsPassed

    120/121 interactive elements have a computable accessible name (99%).

  • Accessibility-tree injection safety (bonus)Passed

    No hidden instruction text detected in accessibility-tree attributes or off-screen content.

Inspect the underlying audit

The complete Ora audit uses evidence from the scan on . After applying changes, run another scan from the homepage to refresh these recommendations.

Sign me up for Vercel product updates and marketing emails.

Unsubscribe anytime. Privacy Notice

Source: Ora API

Snapshot 2026-08-21T21-20-07-082Z