Skip to main content
AllMCPs
BrowseBestCategoriesStackCompareToolsGuidesBlog Log in Submit MCP

Stay in the loop

Get new MCP servers and top picks in your inbox.

AllMCPs

The open directory for discovering and installing Model Context Protocol servers.

Explore

  • Browse servers
  • Best MCP servers
  • Categories
  • MCP clients
  • Agent prompts
  • Stack Builder
  • Compare servers
  • Tags index
  • Submit a server
  • Pricing

Learn

  • Guides hub
  • What is MCP?
  • Install guide
  • Troubleshooting
  • Security
  • Blog
  • Blog RSS

Tools

  • All tools
  • Config generator
  • Config validator
  • MCP playground
  • OpenAPI β†’ MCP
  • Badge generator

For agents

  • API docs
  • Trust & traffic
  • llms.txt β†— (opens in a new tab)
  • Catalog JSON β†— (opens in a new tab)
  • Remote MCP β†— (opens in a new tab)

Company

  • About
  • Contact
  • X (@AllMCPs) β†— (opens in a new tab)
  • GitHub β†— (opens in a new tab)
  • Terms
  • Privacy
AllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistAllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on Buildlist
Β© 2026 Jackalope Digital LLC. All rights reserved.
  1. Home
  2. πŸ’» Developer Tools
  3. Mcp Server
M
Health: Not checked yetWe have not completed a health check for this listing yet.Last checked 8/10/2026, 11:24:08 PM

Mcp Server

Enrichment pendingWe haven’t run our AI enrichment pass on this listing yet, so the overview, use cases, and FAQ below may be sparse or missing. We work through the catalog over time β€” check back soon.
View RepositoryVisit Website

Build smart-glasses apps with AI agents: scaffold, validate, and simulate before real hardware.

Quick Install

Automated & IDE Setup

Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β€” or use 1-click editor setup below.

Add to CursorAdd to VS Code
Manual Client & Custom JSON ConfigExpand JSON β–Ύ

Install Config Generator

Choose your client
claude_desktop_config.json
{
  "mcpServers": {
    "mcp-server-25": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-server-25"
      ]
    }
  }
}

πŸ’‘ Paste into ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

Install Directory Badge Claim listing AlternativesπŸ’» More in Developer Tools

Documentation Overview

Extentos MCP Server

npm version license: MIT

Give your AI coding agent the tools to build smart-glasses apps.

Extentos is an MCP (Model Context Protocol) server that lets agents like Claude Code, Cursor, and Cline add smart-glasses capabilities β€” camera capture, voice triggers, live transcription, audio playback β€” to any Android or iOS app. The tools are deterministic: discovery, scaffolding, validation, and a browser-based simulator for end-to-end testing without hardware.

Works with Meta smart glasses today (Ray-Ban Meta, Oakley Meta, Meta Ray-Ban Display), with a multi-vendor architecture by design.

This repository is the public home of @extentos/mcp-server β€” releases, changelog, and issue tracking. The package ships on npm.

Install

Claude Code

Terminal
claude mcp add extentos -- npx -y @extentos/mcp-server@latest

Cursor β€” one click:

Add to Cursor

Cline / any MCP client

config.json
{
  "mcpServers": {
    "extentos": {
      "command": "npx",
      "args": ["-y", "@extentos/mcp-server@latest"]
    }
  }
}

Requires Node 20+.

What your agent can do with it

Tool groupWhat it does
DiscoverygetPlatformInfo, getCapabilityGuide, getCodeExample β€” the SDK capability catalog, per-feature call shapes in Kotlin + Swift, and canonical end-to-end patterns (voice Q&A, photo-describe, live transcription UI, …)
ScaffoldinggenerateConnectionModule β€” generates the connection UI + manifest + platform config for your app (Android or iOS)
GuidancegetVoiceCommandGuidance, getPermissions β€” implementation guidance the agent queries instead of guessing
ValidationinspectIntegration, validateIntegration β€” deterministic checks of the integration in your repo
SimulationcreateSimulatorSession, getEventLog, getSimulatorStatus β€” a browser simulator running the same SDK code as production with only the transport swapped; the agent drives it and reads the event log to verify behavior
ProductiongetProductionChecklist, getCredentialGuide β€” the path from simulator to real glasses
DocssearchDocs β€” bundled, versioned documentation topics

The workflow an agent typically runs: discover capabilities β†’ scaffold the connection module β†’ write handler code against the SDK β†’ validate β†’ simulate end-to-end β†’ production checklist.

Tools

  • getPlatformInfo β€” SDK capability catalog, version/artifact info, and platform constraints
  • getCapabilityGuide β€” per-feature call shapes in Kotlin + Swift with gotchas
  • getCodeExample β€” canonical end-to-end patterns (voice Q&A, photo-describe, live transcription UI, …)
  • getMigrationGuide β€” mapping table and cutover plan from Meta DAT direct usage to Extentos
  • generateConnectionModule β€” scaffold the connection UI, manifest, and platform config into your app
  • getConnectionPageConfig β€” read the managed connection-page configuration
  • setConnectionPageConfig β€” update the managed connection-page configuration
  • regenerateConnectionPageFile β€” regenerate a managed connection-page file after config changes
  • adoptConnectionPageFile β€” bring an existing connection-page file under managed configuration
  • getAssistantConfig β€” read the managed voice-assistant configuration (model, voice, memory, wake sound)
  • setAssistantConfig β€” update the managed voice-assistant configuration
  • listProjectSounds β€” list custom sounds uploaded for the project
  • addProjectSound β€” upload a custom sound (earcons, wake sounds) to the project
  • shutter β€” trigger a camera shutter in the active simulator session
  • getGatewayUsage β€” AI-gateway usage and metering for the project
  • getCredentialStatus β€” which credentials (Meta DAT, AI provider) are configured
  • setCredential β€” store a credential for the project
  • getProjectAnalytics β€” usage analytics for the project's glasses integration
  • getVoiceCommandGuidance β€” implementation guidance for voice triggers and wake phrases
  • getPermissions β€” the exact permission set the integration needs per platform
  • inspectIntegration β€” read the current state of the integration in your repo
  • validateIntegration β€” deterministic checks of the integration (manifest, config, wiring)
  • createSimulatorSession β€” mint a browser-simulator session for end-to-end testing
  • ensureSimulatorBrowser β€” open/attach the simulator browser tab for the session
  • completeAuthLink β€” finish the device-code sign-in flow
  • getEventLog β€” read the session event log (transport, audio, camera, speak, toggle, stream, system)
  • injectTranscript β€” inject a voice transcript into the running app, as if the wearer spoke
  • injectAssistantUtterance β€” drive the voice assistant with an utterance end-to-end (real provider session)
  • assertToolCalled β€” wait for an assistant tool-call event matching name/args (agent E2E loop)
  • getSimulatorStatus β€” live session state: phase, roles, open streams, freshness, test videos
  • setSimVideo β€” pipe a test video into the simulated camera
  • setSimDevice β€” switch the simulated glasses model
  • getDisplayState β€” read the rendered display tree and interactive element ids (Ray-Ban Display)
  • injectInput β€” drive display input: select/navigate/back, like Neural Band gestures
  • injectHardwareButton β€” simulate the hardware capture button
  • getProductionChecklist β€” the path from simulator to real glasses
  • getCredentialGuide β€” how to obtain and configure Meta DAT credentials
  • searchDocs β€” search the bundled, versioned documentation topics

How it fits together

  • Your app depends on the native SDK: com.extentos:glasses (Android, Maven Central) or the Swift package (iOS)
  • Your code subscribes to capability primitives from its own handler classes β€” glasses.audio.transcriptions(), glasses.camera.capturePhoto(), glasses.audio.speak()
  • The simulator is the same app on a different substrate: WebSocket transport instead of Bluetooth, so agent-verified behavior carries to hardware

Discovery, validation, and guidance tools work anonymously. Creating browser-simulator sessions and scaffolding require a free account β€” the server walks the agent (and you) through a device-code sign-in when needed.

Links

  • Documentation
  • Getting started with an agent
  • MCP tools reference
  • The smart-glasses ecosystem reference

Issues & feedback

Bug reports and feedback are welcome β€” open an issue. The package is pre-1.0; tool surfaces may evolve between minor versions.

For security reports, see SECURITY.md β€” please don't open public issues for vulnerabilities.

License

MIT

Related MCP Servers

View all in Developer Tools View all alternatives
  • Claude Task Master logoClaude Task Master

    AI-powered task management system for AI-driven development. Features PRD parsing, task expansion, multi-provider support (Claude, OpenAI, Gemini, Perplexity, xAI), and selective tool loading for optimized context usage.

    πŸ’» Developer Tools7 views
    Compare vs Claude Task Master β†’
  • A
    Ai Netcafe

    Compare LLM cost & latency on one prompt, translate PDF keeping layout, cited research, make PPTX

    πŸ’» Developer Tools0 views
    Compare vs Ai Netcafe β†’
  • Mcp Server logoMcp Server

    MCP Server for ThoughtSpot - provides OAuth authentication and tools for querying data

    πŸ’» Developer Tools0 views
    Compare vs Mcp Server β†’
  • M
    Mcp

    Workix hub catalog plus freelance digest/search and proposal helpers for AI agents

    πŸ’» Developer Tools0 views
    Compare vs Mcp β†’

Frequently Asked Questions about Mcp Server

Add the following block to your claude_desktop_config.json under mcpServers: "mcpServers": { "mcp-server": { "command": "npx", "args": ["-y", "mcp-server"] } }

AllMCPs Directory Badge

Full Badge Customizer

Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.

Badge Style:
Live Dynamic SVG PreviewMcp Server AllMCPs Directory Badge
Markdown (GitHub README)
[![AllMCPs](https://allmcps.com/api/badge/mcp-server-25?style=directory)](https://allmcps.com/mcp/mcp-server-25)
HTML Embed
<a href="https://allmcps.com/mcp/mcp-server-25"><img src="https://allmcps.com/api/badge/mcp-server-25?style=directory" alt="Mcp Server on AllMCPs" /></a>

Technical Specs & Signals

CategoryπŸ’»Developer Tools
More technical detailsExpand β–Ύ
TransportSTDIO
RuntimeNode.js
0/5 checks healthy over the last 7h
Views0
Unique ViewsTotal visits recorded for this listing page on AllMCPs.
Installs0
Installs & Copy ActionsTotal times users copied install commands or configuration snippets for this server.
npm downloads1,232/mo
Monthly npm DownloadsAverage monthly package installs recorded from npm registry statistics.
31Quality signal: Emerging Β· 31/100How this signal is calculated β–Ύ
Server availabilityNot measured

Not scored for repo-hosted servers β€” we can't reach the running server, only its GitHub page. Hosted MCP endpoints are health-checked live.

Verified ownership8/20
Documentation & tools11/30
Adoption & activity4/15
Community engagement0/10

A guidance signal from public completeness & health data β€” not a user rating. New listings start lower and rise as they add docs, get verified, and grow adoption. Signals we can't observe for a listing are skipped, not counted against it.

β˜… FeaturedMoxie Docs MCP logo

Moxie Docs MCP

MCP & Agent Skills for Automated Documentation, and codebase conventions + context

Explore Server β†’

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to get the verified badge.

Free dofollow backlink: after claiming, verify your product site and place a dofollow AllMCPs badge β€” we recheck it stays live.

Claim & get free dofollow

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.

Explore more

More in πŸ’» Developer Tools β†’Best MCP servers for Developers β†’Alternatives to Mcp Server β†’Install in Claude DesktopInstall in CursorInstall in VS Code