Turn your Obsidian vault into a local-first Agentic Resource Discovery (ARD) publisher and Agent Registry. The plugin scans your AI Skills, builds a rich ai-catalog.json, and runs a localhost server so AI agents on your machine can discover and fetch exactly the skill they need — by natural-language search — without those skills ever leaving your computer.
Built for people who have accumulated dozens or hundreds of AI Skills and MCP servers and don't want to load them all into every agent's context window. Instead of registering everything everywhere, publish them to a local catalog and let agents search it.
- Scans your skill folders (Anthropic Agent Skill format —
SKILL.md+ frontmatter) at startup, without blocking Obsidian, and turns each skill into a rich catalog entry: description, tags, capabilities, and synthesized example queries. - Scans your subagent folders too (opt-in): each
<name>.mddefinition with frontmatter (name,description,tools,model) and a system-prompt body — the Claude Code.claude/agents/shape — becomes an entry of typeapplication/ai-agent+md, so an agent can find "the editor" the same way it finds a skill. - Serves an ARD registry over
http://127.0.0.1with a required bearer token:GET /.well-known/ai-catalog.json— the public catalogPOST /search— natural-language search, results ranked 0–100 by relevancePOST /explore— facet counts (types, tags, capabilities) so an agent can see what's available before searchingGET /agents— deterministic, paginated listing, filterable bytype,tags, andcapabilitiesGET /skills/<name>/SKILL.md(and bundled assets) — so an agent can fetch a skill's body and resources directlyGET /subagents/<name>.md— a subagent definition's bodyGET /status— catalog counts per family, active search backend, and whether semantic embeddings are built yet
- Exposes an MCP endpoint (
POST /mcp) using the Code Mode pattern:search,get_resource(get_skillremains as an alias), andexecutetools, whereexecuteruns sandboxed JavaScript against the catalog so an agent can filter and aggregate in a single call — with the same ranking asPOST /search. - Shows what's running. The settings Status panel reports the server URL, catalog size, last scan, embedding state, and the MCP endpoint — with one-click Copy MCP config and Copy curl example buttons.
- Stays fast on repeat use. Rescans only re-parse
SKILL.mdfiles that actually changed, and embedding vectors are cached across reloads, so a warm restart with a semantic backend is ready immediately. - Adds zero mandatory downloads. The default search backend is an in-process BM25 index (MiniSearch) — no model, no network. Optionally, point it at a local embedding server you already run (Ollama, LM Studio, …) for hybrid semantic search; nothing is bundled or downloaded by the plugin, and it falls back to lexical if the server is down.
Early but functional. The REST registry, skill scanning/enrichment, skill file serving, the MCP Code Mode endpoint, and optional semantic search (local or hosted embedding server) all work and are covered by 200+ tests. See the technical docs for the architecture and design.
isDesktopOnly — the plugin needs Node's HTTP server and filesystem access.
This plugin isn't in the community catalog yet. To try it:
- Build it:
bun install && bun run build(see DEVELOPMENT.md). - Copy
manifest.json,main.js, andstyles.cssinto<vault>/.obsidian/plugins/agentic-resource-discovery-server/. - Enable Agentic Resource Discovery Server in Obsidian → Settings → Community plugins.
- Open the plugin settings.
- Under Skill folders, add one or more folders that contain skills (each skill is a subfolder with a
SKILL.md). Folders may live outside the vault. - Optionally, under Subagent folders, add a folder of agent definitions (e.g.
.claude/agents). Everything listed becomes part of the public catalog, so it is off until you add one. - Click Rescan now. The Status panel shows how many skills and subagents were indexed.
- Copy the bearer token from the Server section (or use Copy MCP config in Status to get a ready-to-paste client config).
- Point an agent at the registry:
# The public catalog needs no auth:
curl http://127.0.0.1:27182/.well-known/ai-catalog.json
# Search needs the bearer token:
curl -X POST http://127.0.0.1:27182/search \
-H "Authorization: Bearer <your-token>" \
-H "Content-Type: application/json" \
-d '{"query":{"text":"summarize a long note"}}'To use it as an MCP server, point your MCP client at http://127.0.0.1:27182/mcp with the bearer token. See the user guide for details.
- User guide — usage, configuration, tips.
- Technical docs — architecture, domain model, and business rules.
- Contributing · Development
- What's new after updates. After a plugin update, a one-time dialog shows the release notes you just received (including skipped versions) with ways to support development. Never shown on fresh installs or regular restarts.
Everything stays on your machine: the server binds to 127.0.0.1 only, every endpoint except the public catalog requires a bearer token, skill file serving is confined to your configured folders (path-traversal-safe), and the execute sandbox has no network or filesystem access. No telemetry, no cloud.
MIT — by Sébastien Dubois. If this is useful, you can buy me a coffee ☕.
| Plugin | What it does |
|---|---|
| Book Exporter | Export books (one manifest note + linked chapter notes) to EPUB and PDF via Pandoc |
| Bookshelf Base | Display your notes as a visual bookshelf via a custom Bases view |
| Dataview Serializer | Serialize Dataview queries to Markdown, and keep the Markdown representation up to date |
| Expander | Replace variables across your vault using HTML comment markers. Supports static values and dynamic functions |
| Ghost Publish | Publish your vault notes to a Ghost blog with configurable presets for tags, newsletters, and frontmatter conventions |
| Graph Explorer Base View | A custom Bases view that renders notes as an interactive force-directed graph with explored/unexplored tracking |
| Hidden Folders Access | Index hidden root-level folders (e.g. .claude) so they appear in the file tree, metadata cache, and Bases |
| Journal Bases | Custom Base views for journaling and periodic reviews |
| Kanban Action Planner | Render your notes as configurable Kanban boards and calendars inside Bases, with statuses, ordering, relationships, and scheduling |
| Life Tracker | Capture and visualize the data that matters in your life |
| Note Village | A 2D pixel art village where your notes become villagers you can explore and chat with using AI |
| Obsidian Starter Kit | Adds strong typing support and powerful automation support for notes |
| Remarkable Synchronizer | Connect to the reMarkable cloud, list, download, and sync notebook pages as images |
| Replicate | Use AI models with ease via the Replicate.com integration |
| REST and MCP server | Exposes CLI commands as RESTful API endpoints and an MCP server for AI tool integration |
| Time Machine | Browse, compare, and restore previous versions of your notes using built-in file-recovery snapshots |
| Transcriber | Transcribe images to markdown using Ollama vision models |
| Typefully | Publish social media posts with ease using the Typefully integration |
| Update Time | Automatically update front matter to include creation and last update times |
Everything I build is documented in my newsletter and on my YouTube channel.
To stay up to date about this plugin, Obsidian in general, Personal Knowledge Management and note-taking:
- Subscribe to my newsletter
- Subscribe to my YouTube channel
- Join the Knowii community and learn to organize your notes and put your knowledge to work, together with fellow knowledge workers
If this plugin is useful to you, here are the best ways to support my work ❤️:
- Join the Knowii community
- Become a GitHub Sponsor
- Buy me a coffee
- Subscribe to my YouTube channel
- Check out my products
Found a bug or have an idea? Open an issue.