Crawler Summary

expo-local-docs-mcp answer-first brief

MCP server for Expo documentation - reads local .mdx files for blazing fast performance. Works out of the box with zero configuration. Expo Docs MCP Server A blazing-fast MCP (Model Context Protocol) server for Expo documentation that reads directly from local .mdx files. ๐Ÿš€ Key Features - **Lightning Fast**: Reads directly from local .mdx files - no HTTP server needed - **Smart Caching**: Disk-based cache for instant subsequent startups (3ms!) - **Full-Text Search**: Powerful search with intelligent scoring algorithm - **Zero Network**: Works compl Published capability contract available. No trust telemetry is available yet. 11 GitHub stars reported by the source. Last updated 2/24/2026.

Freshness

Last checked 2/22/2026

Best For

Contract is available with explicit auth and schema references.

Not Ideal For

expo-local-docs-mcp is not ideal for teams that need stronger public trust telemetry, lower setup complexity, or more explicit contract coverage before production rollout.

Evidence Sources Checked

editorial-content, capability-contract, runtime-metrics, public facts pack

Claim this agent
Agent DossierGitHubSafety: 93/100

expo-local-docs-mcp

MCP server for Expo documentation - reads local .mdx files for blazing fast performance. Works out of the box with zero configuration. Expo Docs MCP Server A blazing-fast MCP (Model Context Protocol) server for Expo documentation that reads directly from local .mdx files. ๐Ÿš€ Key Features - **Lightning Fast**: Reads directly from local .mdx files - no HTTP server needed - **Smart Caching**: Disk-based cache for instant subsequent startups (3ms!) - **Full-Text Search**: Powerful search with intelligent scoring algorithm - **Zero Network**: Works compl

MCPverified

Public facts

7

Change events

1

Artifacts

0

Freshness

Feb 22, 2026

Verifiededitorial-content1 verified compatibility signal11 GitHub stars

Published capability contract available. No trust telemetry is available yet. 11 GitHub stars reported by the source. Last updated 2/24/2026.

11 GitHub starsSchema refs publishedTrust evidence available

Trust score

Unknown

Compatibility

MCP

Freshness

Feb 22, 2026

Vendor

Ception

Artifacts

0

Benchmarks

0

Last release

2.0.2

Executive Summary

Key links, install path, and a quick operational read before the deeper crawl record.

Verifiededitorial-content

Summary

Published capability contract available. No trust telemetry is available yet. 11 GitHub stars reported by the source. Last updated 2/24/2026.

Setup snapshot

git clone https://github.com/Ception/expo-local-docs-mcp.git
  1. 1

    Setup complexity is MEDIUM. Standard integration tests and API key provisioning are required before connecting this to production workloads.

  2. 2

    Final validation: Expose the agent to a mock request payload inside a sandbox and trace the network egress before allowing access to real customer data.

Evidence Ledger

Everything public we have scraped or crawled about this agent, grouped by evidence type with provenance.

Verifiededitorial-content
Vendor (1)

Vendor

Ception

profilemedium
Observed Feb 24, 2026Source linkProvenance
Compatibility (2)

Protocol compatibility

MCP

contracthigh
Observed Feb 24, 2026Source linkProvenance

Auth modes

mcp, api_key

contracthigh
Observed Feb 24, 2026Source linkProvenance
Artifact (1)

Machine-readable schemas

OpenAPI or schema references published

contracthigh
Observed Feb 24, 2026Source linkProvenance
Adoption (1)

Adoption signal

11 GitHub stars

profilemedium
Observed Feb 24, 2026Source linkProvenance
Security (1)

Handshake status

UNKNOWN

trustmedium
Observed unknownSource linkProvenance
Integration (1)

Crawlable docs

6 indexed pages on the official domain

search_documentmedium
Observed Apr 15, 2026Source linkProvenance

Release & Crawl Timeline

Merged public release, docs, artifact, benchmark, pricing, and trust refresh events.

Self-declaredagent-index

Artifacts Archive

Extracted files, examples, snippets, parameters, dependencies, permissions, and artifact metadata.

Self-declaredGITHUB MCP

Extracted files

0

Examples

6

Snippets

0

Languages

typescript

Executable Examples

json

{
  "mcpServers": {
    "expo-docs": {
      "command": "npx",
      "args": ["expo-local-docs-mcp"]
    }
  }
}

bash

npm install -g expo-local-docs-mcp
# or with pnpm
pnpm install -g expo-local-docs-mcp

json

{
  "mcpServers": {
    "expo-docs": {
      "command": "expo-local-docs-mcp"
    }
  }
}

bash

cd ~/my-expo-project
npm install expo-local-docs-mcp

json

{
  "mcpServers": {
    "expo-docs": {
      "command": "node",
      "args": [
        "/absolute/path/to/node_modules/expo-local-docs-mcp/dist/server.js"
      ]
    }
  }
}

bash

cd /Users/x./Documents/repos/mcps/expo-local-mcp
bun install
bun run build

Docs & README

Full documentation captured from public sources, including the complete README when available.

Self-declaredGITHUB MCP

Docs source

GITHUB MCP

Editorial quality

ready

MCP server for Expo documentation - reads local .mdx files for blazing fast performance. Works out of the box with zero configuration. Expo Docs MCP Server A blazing-fast MCP (Model Context Protocol) server for Expo documentation that reads directly from local .mdx files. ๐Ÿš€ Key Features - **Lightning Fast**: Reads directly from local .mdx files - no HTTP server needed - **Smart Caching**: Disk-based cache for instant subsequent startups (3ms!) - **Full-Text Search**: Powerful search with intelligent scoring algorithm - **Zero Network**: Works compl

Full README

Expo Docs MCP Server

A blazing-fast MCP (Model Context Protocol) server for Expo documentation that reads directly from local .mdx files.

๐Ÿš€ Key Features

  • Lightning Fast: Reads directly from local .mdx files - no HTTP server needed
  • Smart Caching: Disk-based cache for instant subsequent startups (3ms!)
  • Full-Text Search: Powerful search with intelligent scoring algorithm
  • Zero Network: Works completely offline
  • Optimized for Bun: Built specifically for Bun's performance

๐Ÿ“Š Performance

| Metric | First Run | Cached Run | | ------------ | -------------- | -------------- | | Index Build | ~78ms | ~3ms | | Search Query | 8ms | 8ms | | Documents | 958 .mdx files | 958 .mdx files | | Cache Size | ~2.7MB | ~2.7MB |

26x faster on subsequent runs!

๐Ÿ› ๏ธ Setup

Choose your preferred installation method:

Option 1: npx (Zero Install)

No installation needed! Just add to your Cursor MCP configuration:

{
  "mcpServers": {
    "expo-docs": {
      "command": "npx",
      "args": ["expo-local-docs-mcp"]
    }
  }
}

โœ… Always uses latest version
โœ… No manual updates needed
โš ๏ธ Slight delay on first run (cached after)

Option 2: Global Install (Recommended)

Install once, use everywhere:

npm install -g expo-local-docs-mcp
# or with pnpm
pnpm install -g expo-local-docs-mcp

Then add to your Cursor MCP configuration:

{
  "mcpServers": {
    "expo-docs": {
      "command": "expo-local-docs-mcp"
    }
  }
}

โœ… Instant startup (no download)
โœ… Cleaner config
โš ๏ธ Manual updates: npm update -g expo-local-docs-mcp

Option 3: Local Project Install

Install in your project:

cd ~/my-expo-project
npm install expo-local-docs-mcp

Then add to your Cursor MCP configuration:

{
  "mcpServers": {
    "expo-docs": {
      "command": "node",
      "args": [
        "/absolute/path/to/node_modules/expo-local-docs-mcp/dist/server.js"
      ]
    }
  }
}

โœ… Version locked to project
โš ๏ธ Must install per project
โš ๏ธ Need absolute path in config


That's it! The package includes all 958 Expo SDK docs and works out of the box with any method.

For Contributors: Local Development

If you want to contribute or customize:

Prerequisites

  • Bun installed (recommended) or Node.js
  • Expo documentation .mdx files in the expo-sdk/ folder

Installation

cd /Users/x./Documents/repos/mcps/expo-local-mcp
bun install
bun run build

Test It Works

bun run test

You should see:

โœ… All tests passed!
โœ“ Search index loaded: 958 entries in 78ms (first run)
โœ“ Search index loaded: 958 entries in 3ms (cached)

Configuration for Local Development

Add to your Cursor MCP configuration (~/.cursor/mcp.json or ~/.config/cursor/mcp.json):

{
  "mcpServers": {
    "expo-docs": {
      "command": "bun",
      "args": ["/<workingdirectory>/expo-local-mcp/dist/server.js"],
      "env": {
        "EXPO_DOCS_PATH": "/<workingdirectory>/expo-local-mcp/expo-sdk",
        "EXPO_CACHE_DIR": "/<workingdirectory>/expo-local-mcp/.expo-cache"
      }
    }
  }
}

Important: Update the paths to match your actual installation location.

๐Ÿ“š Available Tools

1. search_expo_docs

Search the Expo documentation with intelligent ranking.

Parameters:

  • query (string, required): Search query
  • section (string, optional): Filter by section (e.g., 'guides', 'router', 'versions')
  • maxResults (number, optional): Max results (default: 10)

Example:

{
  "query": "camera permissions",
  "section": "guides",
  "maxResults": 5
}

2. get_expo_doc_content

Get the full content of a specific documentation page.

Parameters:

  • path (string, required): Document path (e.g., /versions/latest/sdk/camera)

Example:

{
  "path": "/get-started/introduction"
}

3. list_expo_sections

List all documentation sections or get documents in a specific section.

Parameters:

  • section (string, optional): Get documents in this section

Example:

{
  "section": "router"
}

4. get_expo_api_reference

Get API reference for a specific Expo SDK module.

Parameters:

  • module (string, required): Module name (e.g., 'camera', 'expo-camera')
  • version (string, optional): SDK version (default: latest)

Example:

{
  "module": "camera",
  "version": "v54.0.0"
}

5. get_expo_quick_start

Get quick start documentation.

Parameters:

  • topic (string, optional): Specific topic (e.g., 'create-a-project')

Example:

{
  "topic": "create-a-project"
}

๐Ÿ—๏ธ Architecture

expo-local-docs-mcp/
โ”œโ”€โ”€ src/
โ”‚   โ”œโ”€โ”€ server.ts              # MCP server implementation
โ”‚   โ”œโ”€โ”€ config.ts              # Configuration management
โ”‚   โ”œโ”€โ”€ diskCache.ts           # Disk cache management
โ”‚   โ”œโ”€โ”€ mdxParser.ts           # MDX file parser (frontmatter + content)
โ”‚   โ”œโ”€โ”€ searchIndex/           # Search index module
โ”‚   โ”‚   โ”œโ”€โ”€ index.ts           # Public API exports
โ”‚   โ”‚   โ”œโ”€โ”€ types.ts           # TypeScript types
โ”‚   โ”‚   โ”œโ”€โ”€ state.ts           # Index state management
โ”‚   โ”‚   โ”œโ”€โ”€ loader.ts          # Index building and loading
โ”‚   โ”‚   โ”œโ”€โ”€ search.ts          # Search algorithm
โ”‚   โ”‚   โ”œโ”€โ”€ query.ts           # Document queries
โ”‚   โ”‚   โ””โ”€โ”€ fileUtils.ts       # File system utilities
โ”‚   โ””โ”€โ”€ tools/                 # MCP tool handlers
โ”‚       โ”œโ”€โ”€ definitions.ts     # Tool schemas
โ”‚       โ””โ”€โ”€ handlers/          # Tool implementations
โ”‚           โ”œโ”€โ”€ index.ts       # Handler dispatcher
โ”‚           โ”œโ”€โ”€ types.ts       # Handler types
โ”‚           โ”œโ”€โ”€ searchExpoDocs.ts
โ”‚           โ”œโ”€โ”€ getExpoDocContent.ts
โ”‚           โ”œโ”€โ”€ listExpoSections.ts
โ”‚           โ”œโ”€โ”€ getExpoApiReference.ts
โ”‚           โ””โ”€โ”€ getExpoQuickStart.ts
โ”œโ”€โ”€ expo-sdk/                  # Your Expo documentation .mdx files
โ”‚   โ”œโ”€โ”€ get-started/
โ”‚   โ”œโ”€โ”€ guides/
โ”‚   โ”œโ”€โ”€ router/
โ”‚   โ”œโ”€โ”€ versions/
โ”‚   โ””โ”€โ”€ ...
โ”œโ”€โ”€ .expo-cache/               # Generated cache (auto-created)
โ”‚   โ””โ”€โ”€ search-index.json
โ”œโ”€โ”€ dist/                      # Built server
โ”‚   โ””โ”€โ”€ server.js
โ”œโ”€โ”€ test-server.ts             # Basic functionality tests
โ”œโ”€โ”€ test-tools.ts              # Comprehensive tool tests
โ””โ”€โ”€ package.json

๐Ÿ”ง Development

# Run in development mode
bun run dev

# Build for production
bun run build

# Start built server
bun run start

# Run tests
bun run test

# Clear cache (force rebuild)
bun run clear-cache

๐ŸŽฏ Environment Variables

| Variable | Default | Description | | ------------------------- | --------------- | --------------------------------------------- | | EXPO_DOCS_PATH | ./expo-sdk | Path to expo-sdk folder containing .mdx files | | EXPO_CACHE_DIR | ./.expo-cache | Cache directory location | | EXPO_DOCS_MAX_RESULTS | 20 | Max search results to return | | EXPO_DOCS_CACHE_MAX_AGE | 86400000 | Cache age in ms (24 hours) |

๐Ÿ“ฆ Dependencies

  • @modelcontextprotocol/sdk - MCP protocol implementation
  • @types/node - TypeScript Node.js types
  • typescript - TypeScript compiler

That's it! No HTTP clients, no HTML parsers, just fast file I/O.

๐Ÿ› Troubleshooting

Index not building

  • Ensure expo-sdk/ folder exists and contains .mdx files
  • Check file permissions on the directory
  • Try bun run clear-cache and restart

Search returning no results

  • Wait for index to build (check console output)
  • Verify .mdx files have content
  • Try broader search terms

Cache rebuilding every time

  • Check .expo-cache/ folder permissions
  • Verify cache file is being created: ls -lh .expo-cache/
  • Check disk space

"Cannot find module" errors

  • Run bun install to ensure dependencies are installed
  • Run bun run build to rebuild

๐Ÿ“ How It Works

  1. Startup: Server initializes and attempts to load from disk cache
  2. Cache Check: If valid cache exists (<24h old, correct version), loads in ~3ms
  3. Fresh Build: If no cache, scans expo-sdk/ recursively for all .mdx files (958 files)
  4. Parsing: Extracts YAML frontmatter and strips MDX/JSX to get clean text content
  5. Indexing: Builds in-memory search index with path mapping (~78ms)
  6. Caching: Saves complete index to search-index.json (~2.7MB)
  7. Search: Uses optimized scoring algorithm (exact matches > word matches)

MDX Parsing

Each .mdx file's frontmatter is parsed:

---
title: Camera
description: A React component that renders a preview...
packageName: expo-camera
platforms: ["android", "ios", "web"]
---

This metadata is used for better search results and filtering.

Search Scoring Algorithm

The search uses a dual-layer scoring system for maximum relevance:

Exact Phrase Matches:

  • Title contains exact query: 1000 points
  • Description contains exact query: 500 points
  • Path contains exact query: 300 points
  • Content contains exact query: 100 points

Individual Word Matches (with boundary detection):

  • Word match in title: 50 points per occurrence
  • Word match in description: 25 points per occurrence
  • Word match in path: 15 points per occurrence
  • Word match in content: 1 point per occurrence

Performance Optimizations:

  • Pre-compiles regex patterns for each search word
  • Uses for...of loop instead of .map() for better performance
  • Only creates scored objects for entries with matches (score > 0)
  • Single-pass algorithm with early filtering

๐Ÿ”„ Updating Documentation

To update the Expo docs:

  1. Replace/update files in expo-sdk/ folder
  2. Clear the cache: bun run clear-cache
  3. Restart the MCP server

The index will automatically rebuild on next startup.

โ“ FAQ

Q: Should I use npx or install globally?
A: Global install (npm install -g) is recommended for faster startup and cleaner config. Use npx if you want automatic updates.

Q: How do I update to the latest version?
A:

  • npx: Automatic (always uses latest)
  • Global: npm update -g expo-local-docs-mcp
  • Local: npm update expo-local-docs-mcp in your project

Q: How do I test npx execution?
A: Run npx expo-local-docs-mcp directly in your terminal. It should start the MCP server on stdio.

Q: Do I need the localhost:3002 server running?
A: No! That was the old v1.x architecture. v2.0 reads files directly.

Q: Can I delete the cache folder?
A: Yes! It will automatically rebuild (takes ~78ms). Cache locations:

  • npm/npx: /tmp/expo-local-docs-mcp-cache/ (macOS/Linux)
  • Local dev: .expo-cache/ (project root)

Q: What happens if an .mdx file is missing?
A: The server gracefully skips it and continues indexing other files.

Q: Can I use this with Node.js instead of Bun?
A: Yes! The npm package is built to work with Node.js. Local development can use either Bun or Node.

Q: How big is the npm package?
A: ~4-5MB including all 958 Expo SDK docs. First startup takes ~78ms to build the search index.

๐Ÿ“ˆ Indexed Content

Total documents: 958 .mdx files
Total sections: 38
Cache size: ~2.7MB

Top sections:
  - versions: 588 docs (SDK API references)
  - guides: 53 docs
  - router: 40 docs (Expo Router)
  - eas: 31 docs (EAS services)
  - eas-update: 27 docs
  - tutorial: 25 docs
  - develop: 20 docs
  - build-reference: 20 docs
  - archive: 18 docs
  - modules: 16 docs

๐ŸŽ‰ Benefits vs v1.x

| Feature | v1.x (HTTP) | v2.0 (Files) | | ------------------ | -------------------- | ------------ | | Speed (first run) | 5-10s | 78ms | | Speed (cached) | 1-2s | 3ms | | Network required | Yes | No | | Dependencies | axios, cheerio | None | | HTTP server needed | Yes (localhost:3002) | No | | Offline support | No | Yes | | Search quality | Good | Better |

๐Ÿ“„ License

MIT

๐Ÿค Contributing

This is a personal MCP server optimized for local Expo documentation access. Feel free to fork and adapt for your needs!


Version: 2.0.0
Built with: Bun + TypeScript
Performance: ๐Ÿš€ Blazing Fast

Contract & API

Machine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.

Verifiedcapability-contract

Contract coverage

Status

ready

Auth

mcp, api_key

Streaming

No

Data region

global

Protocol support

MCP: verified

Requires: mcp, lang:typescript

Forbidden: none

Guardrails

Operational confidence: medium

Contract is available with explicit auth and schema references.
Trust confidence is not low and verification freshness is acceptable.
Protocol support is explicitly confirmed in contract metadata.
Invocation examples
curl -s "https://xpersona.co/api/v1/agents/mcp-ception-expo-local-docs-mcp/snapshot"
curl -s "https://xpersona.co/api/v1/agents/mcp-ception-expo-local-docs-mcp/contract"
curl -s "https://xpersona.co/api/v1/agents/mcp-ception-expo-local-docs-mcp/trust"

Reliability & Benchmarks

Trust and runtime signals, benchmark suites, failure patterns, and practical risk constraints.

Missingruntime-metrics

Trust signals

Handshake

UNKNOWN

Confidence

unknown

Attempts 30d

unknown

Fallback rate

unknown

Runtime metrics

Observed P50

unknown

Observed P95

unknown

Rate limit

unknown

Estimated cost

unknown

No benchmark suites or observed failure patterns are available.

Media & Demo

Every public screenshot, visual asset, demo link, and owner-provided destination tied to this agent.

Missingno-media
No screenshots, media assets, or demo links are available.

Related Agents

Neighboring agents from the same protocol and source ecosystem for comparison and shortlist building.

Self-declaredprotocol-neighbors
GITLAB_AI_CATALOGgitlab-mcp

Rank

83

A Model Context Protocol (MCP) server for GitLab

Traction

No public download signal

Freshness

Updated 2d ago

MCP
GITLAB_PUBLIC_PROJECTSgitlab-mcp

Rank

80

A Model Context Protocol (MCP) server for GitLab

Traction

No public download signal

Freshness

Updated 2d ago

MCP
GITLAB_AI_CATALOGrmcp-openapi

Rank

74

Expose OpenAPI definition endpoints as MCP tools using the official Rust SDK for the Model Context Protocol (https://github.com/modelcontextprotocol/rust-sdk)

Traction

No public download signal

Freshness

Updated 2d ago

MCP
GITLAB_AI_CATALOGrmcp-actix-web

Rank

72

An actix_web backend for the official Rust SDK for the Model Context Protocol (https://github.com/modelcontextprotocol/rust-sdk)

Traction

No public download signal

Freshness

Updated 2d ago

MCP
Machine Appendix

Contract JSON

{
  "contractStatus": "ready",
  "authModes": [
    "mcp",
    "api_key"
  ],
  "requires": [
    "mcp",
    "lang:typescript"
  ],
  "forbidden": [],
  "supportsMcp": true,
  "supportsA2a": false,
  "supportsStreaming": false,
  "inputSchemaRef": "https://github.com/Ception/expo-local-docs-mcp#input",
  "outputSchemaRef": "https://github.com/Ception/expo-local-docs-mcp#output",
  "dataRegion": "global",
  "contractUpdatedAt": "2026-02-24T19:45:51.343Z",
  "sourceUpdatedAt": "2026-02-24T19:45:51.343Z",
  "freshnessSeconds": 4438817
}

Invocation Guide

{
  "preferredApi": {
    "snapshotUrl": "https://xpersona.co/api/v1/agents/mcp-ception-expo-local-docs-mcp/snapshot",
    "contractUrl": "https://xpersona.co/api/v1/agents/mcp-ception-expo-local-docs-mcp/contract",
    "trustUrl": "https://xpersona.co/api/v1/agents/mcp-ception-expo-local-docs-mcp/trust"
  },
  "curlExamples": [
    "curl -s \"https://xpersona.co/api/v1/agents/mcp-ception-expo-local-docs-mcp/snapshot\"",
    "curl -s \"https://xpersona.co/api/v1/agents/mcp-ception-expo-local-docs-mcp/contract\"",
    "curl -s \"https://xpersona.co/api/v1/agents/mcp-ception-expo-local-docs-mcp/trust\""
  ],
  "jsonRequestTemplate": {
    "query": "summarize this repo",
    "constraints": {
      "maxLatencyMs": 2000,
      "protocolPreference": [
        "MCP"
      ]
    }
  },
  "jsonResponseTemplate": {
    "ok": true,
    "result": {
      "summary": "...",
      "confidence": 0.9
    },
    "meta": {
      "source": "GITHUB_MCP",
      "generatedAt": "2026-04-17T04:46:08.400Z"
    }
  },
  "retryPolicy": {
    "maxAttempts": 3,
    "backoffMs": [
      500,
      1500,
      3500
    ],
    "retryableConditions": [
      "HTTP_429",
      "HTTP_503",
      "NETWORK_TIMEOUT"
    ]
  }
}

Trust JSON

{
  "status": "unavailable",
  "handshakeStatus": "UNKNOWN",
  "verificationFreshnessHours": null,
  "reputationScore": null,
  "p95LatencyMs": null,
  "successRate30d": null,
  "fallbackRate": null,
  "attempts30d": null,
  "trustUpdatedAt": null,
  "trustConfidence": "unknown",
  "sourceUpdatedAt": null,
  "freshnessSeconds": null
}

Capability Matrix

{
  "rows": [
    {
      "key": "MCP",
      "type": "protocol",
      "support": "supported",
      "confidenceSource": "contract",
      "notes": "Confirmed by capability contract"
    },
    {
      "key": "mcp",
      "type": "capability",
      "support": "supported",
      "confidenceSource": "profile",
      "notes": "Declared in agent profile metadata"
    },
    {
      "key": "model-context-protocol",
      "type": "capability",
      "support": "supported",
      "confidenceSource": "profile",
      "notes": "Declared in agent profile metadata"
    },
    {
      "key": "expo",
      "type": "capability",
      "support": "supported",
      "confidenceSource": "profile",
      "notes": "Declared in agent profile metadata"
    },
    {
      "key": "documentation",
      "type": "capability",
      "support": "supported",
      "confidenceSource": "profile",
      "notes": "Declared in agent profile metadata"
    },
    {
      "key": "docs",
      "type": "capability",
      "support": "supported",
      "confidenceSource": "profile",
      "notes": "Declared in agent profile metadata"
    },
    {
      "key": "react-native",
      "type": "capability",
      "support": "supported",
      "confidenceSource": "profile",
      "notes": "Declared in agent profile metadata"
    },
    {
      "key": "ai",
      "type": "capability",
      "support": "supported",
      "confidenceSource": "profile",
      "notes": "Declared in agent profile metadata"
    },
    {
      "key": "llm",
      "type": "capability",
      "support": "supported",
      "confidenceSource": "profile",
      "notes": "Declared in agent profile metadata"
    },
    {
      "key": "cursor",
      "type": "capability",
      "support": "supported",
      "confidenceSource": "profile",
      "notes": "Declared in agent profile metadata"
    },
    {
      "key": "cli",
      "type": "capability",
      "support": "supported",
      "confidenceSource": "profile",
      "notes": "Declared in agent profile metadata"
    }
  ],
  "flattenedTokens": "protocol:MCP|supported|contract capability:mcp|supported|profile capability:model-context-protocol|supported|profile capability:expo|supported|profile capability:documentation|supported|profile capability:docs|supported|profile capability:react-native|supported|profile capability:ai|supported|profile capability:llm|supported|profile capability:cursor|supported|profile capability:cli|supported|profile"
}

Facts JSON

[
  {
    "factKey": "docs_crawl",
    "category": "integration",
    "label": "Crawlable docs",
    "value": "6 indexed pages on the official domain",
    "href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
    "sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
    "sourceType": "search_document",
    "confidence": "medium",
    "observedAt": "2026-04-15T05:03:46.393Z",
    "isPublic": true
  },
  {
    "factKey": "protocols",
    "category": "compatibility",
    "label": "Protocol compatibility",
    "value": "MCP",
    "href": "https://xpersona.co/api/v1/agents/mcp-ception-expo-local-docs-mcp/contract",
    "sourceUrl": "https://xpersona.co/api/v1/agents/mcp-ception-expo-local-docs-mcp/contract",
    "sourceType": "contract",
    "confidence": "high",
    "observedAt": "2026-02-24T19:45:51.343Z",
    "isPublic": true
  },
  {
    "factKey": "auth_modes",
    "category": "compatibility",
    "label": "Auth modes",
    "value": "mcp, api_key",
    "href": "https://xpersona.co/api/v1/agents/mcp-ception-expo-local-docs-mcp/contract",
    "sourceUrl": "https://xpersona.co/api/v1/agents/mcp-ception-expo-local-docs-mcp/contract",
    "sourceType": "contract",
    "confidence": "high",
    "observedAt": "2026-02-24T19:45:51.343Z",
    "isPublic": true
  },
  {
    "factKey": "schema_refs",
    "category": "artifact",
    "label": "Machine-readable schemas",
    "value": "OpenAPI or schema references published",
    "href": "https://github.com/Ception/expo-local-docs-mcp#input",
    "sourceUrl": "https://xpersona.co/api/v1/agents/mcp-ception-expo-local-docs-mcp/contract",
    "sourceType": "contract",
    "confidence": "high",
    "observedAt": "2026-02-24T19:45:51.343Z",
    "isPublic": true
  },
  {
    "factKey": "vendor",
    "category": "vendor",
    "label": "Vendor",
    "value": "Ception",
    "href": "https://github.com/ception/expo-local-docs-mcp#readme",
    "sourceUrl": "https://github.com/ception/expo-local-docs-mcp#readme",
    "sourceType": "profile",
    "confidence": "medium",
    "observedAt": "2026-02-24T19:43:14.176Z",
    "isPublic": true
  },
  {
    "factKey": "traction",
    "category": "adoption",
    "label": "Adoption signal",
    "value": "11 GitHub stars",
    "href": "https://github.com/Ception/expo-local-docs-mcp",
    "sourceUrl": "https://github.com/Ception/expo-local-docs-mcp",
    "sourceType": "profile",
    "confidence": "medium",
    "observedAt": "2026-02-24T19:43:14.176Z",
    "isPublic": true
  },
  {
    "factKey": "handshake_status",
    "category": "security",
    "label": "Handshake status",
    "value": "UNKNOWN",
    "href": "https://xpersona.co/api/v1/agents/mcp-ception-expo-local-docs-mcp/trust",
    "sourceUrl": "https://xpersona.co/api/v1/agents/mcp-ception-expo-local-docs-mcp/trust",
    "sourceType": "trust",
    "confidence": "medium",
    "observedAt": null,
    "isPublic": true
  }
]

Change Events JSON

[
  {
    "eventType": "docs_update",
    "title": "Docs refreshed: Sign in to GitHub ยท GitHub",
    "description": "Fresh crawlable documentation was indexed for the official domain.",
    "href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
    "sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
    "sourceType": "search_document",
    "confidence": "medium",
    "observedAt": "2026-04-15T05:03:46.393Z",
    "isPublic": true
  }
]

Sponsored

Ads related to expo-local-docs-mcp and adjacent AI workflows.