pebble-index-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@pebble-index-mcpsearch my vault for 'meeting notes'"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
pebble-index-mcp
MCP bridge that exposes a local Obsidian vault and a Hermes Agent instance to the Pebble Index 01 smart ring's double-click MCP sandbox. Voice captures from the ring are routed by the Pebble app's cloud agent into this server's tools, and the answer comes back as a phone notification.
Architecture
[Index ring] → [Pebble app] → [Pebble cloud agent] → [this MCP server]
├─ vault tools (local files)
└─ ask_hermes → Hermes API serverThe server speaks MCP over Streamable HTTP (official
mcpSDK, FastMCP).Every request must carry a bearer token; anything else gets 401.
FastMCP's DNS-rebinding protection is on: allowed hosts are loopback plus anything listed in
MCP_ALLOWED_HOSTS.The public exposure is a cloudflared tunnel to the loopback port; no cloud infrastructure is required beyond that.
Related MCP server: mcp-obsidian
Components
Path | Role |
|
|
|
|
| FastMCP app: registers the four tools and the |
Tools
vault_search(query, max_results=5)— case-insensitive text search; returnspath: excerptlines.vault_read(note_path, max_chars=1500)— reads the head of a note.vault_append(note_path, text)— appends a timestamped- HH:MM textline, creating the note if needed.ask_hermes(question)— forwards to the Hermes API server; 60s timeout with an honest acknowledgment on miss.
Security
Auth: static bearer token (
MCP_BEARER_TOKEN), constant-time compared, required on every request. An empty token fails closed (all requests 401) and logs a warning at startup.Transport: TLS terminates at the tunnel edge; the origin listens on loopback only.
Host validation: DNS-rebinding protection rejects requests whose Host header is not loopback or in
MCP_ALLOWED_HOSTS.Path sandbox: vault tools resolve all paths and require them to stay inside the vault root; symlink escapes are rejected and file opens use
O_NOFOLLOWon the final component. The sandbox guards against accidental and remote misuse; a hostile local process that races a parent-directory swap can still win (documented TOCTOU boundary — the vault is assumed to be a trusted single-user directory).Config is read once at import: rotating the bearer token or changing allowed hosts requires a service restart.
Secrets: the Hermes API key and MCP token live in a 0600 env file outside this repo, never in code, logs, or commits.
Privacy note: recordings routed through the double-click sandbox transit the Pebble app's cloud agent. Single-click captures stay on-device. Sensitive thoughts belong on single-click.
Configuration (env)
Var | Default | Purpose |
| — | Required. Vault root for the file tools |
|
| Listen address |
| — | Required; request auth token |
| — | Comma-separated extra allowed Host values (the public tunnel hostname goes here) |
|
| ask_hermes target |
| — | API server bearer key |
|
| Model alias sent upstream (map it to a cheap model via the API server's |
| — | Optional path to a text file replacing the generic cloud-agent persona |
HERMES_API_URL accepts any OpenAI-compatible chat completions endpoint, so
ask_hermes works against OpenRouter directly, Ollama, or any other
compatible API — Hermes is just the default.
Development
python3 -m venv .venv
.venv/bin/pip install -e ".[dev]"
.venv/bin/pytest -vRun locally: set the env vars above and python -m pebble_index_mcp.server.
Deployment
deploy/ contains a systemd user unit template and a cloudflared tunnel
template (hostname and credentials filled in on the host, not in this repo).
See docs/ring-checklist.md for the phone-side setup and test matrix.
License
MIT — see LICENSE.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityDmaintenanceEnables AI assistants to interact with Obsidian vaults for creating, reading, searching, and managing notes, daily notes, TODOs, session reports, and backlinks through both stdio and HTTP/SSE transports.103,8604MIT
- AlicenseNot gradedqualityBmaintenanceConnects AI assistants to Obsidian vaults via the Local REST API to search notes, retrieve content, and perform semantic searches. It features self-healing multi-URL connectivity and supports both stdio and HTTP transports for flexible deployment.23213MIT
- AlicenseNot gradedqualityDmaintenanceEnables AI assistants to manage Obsidian notes via local REST API, supporting file CRUD, search, commands, and periodic notes.2,4727Apache 2.0
- AlicenseBqualityDmaintenanceEnables AI assistants to search, create, and manage notes in an Obsidian vault via 40+ local tools.5222MIT
Related MCP Connectors
Search, read, and write your Apple Notes from ChatGPT/Claude via a local Mac agent + MCP relay.
Connect AI assistants to your GitHub-hosted Obsidian vault to seamlessly access, search, and analy…
Search your Obsidian vault to quickly find notes by title or keyword, summarize related content, a…
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/jcrabapple/pebble-index-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server