Lab Registry Server
Enables MCP clients to discover and fetch skills, agents, commands, and hooks from the Gen-e2 Lab Registry, and check local inventory compliance against the registry.
README
Lab Registry Server
MCP server exposing the Gen-e2 Lab Registry — skills, agents, commands, and hooks — to any MCP-compatible client (Claude Code, GitHub Copilot agent mode). Designed for the Innovation Lab at Palo IT Singapore.
Canonical repository: https://github.com/Palo-IT-GitHub-Demos/lab-registry-mcp
This repository contains only the MCP server.
It does not embed the gen-e2-marketplace project, which remains the registry source of truth.
In normal usage, the server reads that source directly from GitHub.
What it does
An MCP server connected to the gen-e2 plugins repository so an agent can access the library directly from VS Code.
Who it helps
Mainly Labs developers, especially people getting started with gen-e2.
Why it exists
To make the gen-e2 library easier to discover, search, reuse, and keep up to date across projects.
Main use cases
- Explore the gen-e2 artefact library more deeply
- Search a specific plugin or artefact by name and reuse it quickly in the current project
- Get suggestions for which gen-e2 artefacts are relevant to the current project or task
- Detect new gen-e2 plugins, version drift, or recent modifications in the library
How it works
gen-e2-marketplace/ ← source of truth (read-only, never written)
.claude-plugin/
marketplace.json ← list of all 13 plugins with semver versions
plugins/
android/
.claude-plugin/plugin.json
CHANGELOG.md
skills/android-architecture/SKILL.md ← YAML frontmatter + markdown body
agents/android-architect.agent.md
commands/add-screen.md
hooks.json
research-suite/ ...
delivery/ ...
...
lab-registry-mcp/ ← this repo
src/lab_registry/
registry.py ← reads marketplace on first call, caches result
models.py ← RegistryEntry, Plugin (Pydantic)
server.py ← FastMCP, 12 tools registered via @mcp.tool()
tools/
search.py ← list_entries, search_entries, suggest_entries
fetch.py ← get_entry, get_plugin, get_entry_by_id, list_plugins, get_changelog
compliance.py ← check_compliance
stats.py ← get_marketplace_stats
validate.py ← validate_entry
Startup sequence:
- MCP client (Claude Code or Copilot) spawns the server process via stdio
- Server responds to
initialize— no files read yet - On first tool call,
load_registry()reads from eitherREGISTRY_GITHUB_REPOorREGISTRY_PATH, parses marketplace metadata, indexes plugin entries, and extractsupdated_atfromCHANGELOG.mdwhen available - Result is cached in memory (
lru_cache) for the life of the process - All subsequent tool calls use the in-memory index — no disk access except
get_entry(reads file content on demand)
Versioning model: version lives at the plugin level (from plugin.json), not per individual artifact. All 33 android artefacts share plugin_version: "0.1.0". If the android plugin bumps to 0.2.0, all its artefacts are considered outdated.
Install
# Install directly from GitHub
pip install "git+https://github.com/Palo-IT-GitHub-Demos/lab-registry-mcp"
# Or pin an explicit tag
pip install "git+https://github.com/Palo-IT-GitHub-Demos/lab-registry-mcp@v0.1.0"
For local development:
git clone https://github.com/Palo-IT-GitHub-Demos/lab-registry-mcp
cd lab-registry-mcp
python3 -m venv .venv
source .venv/bin/activate
pip install -e ".[dev]"
Configuration
There are 3 practical ways to configure the source registry.
1) GitHub source from GLOBAL-PALO-IT/gen-e2-marketplace (recommended when you have access)
Use this when you can obtain a GitHub token with access to the official marketplace repository.
export REGISTRY_GITHUB_REPO=GLOBAL-PALO-IT/gen-e2-marketplace
# optional but usually needed for private repo access
export REGISTRY_GITHUB_TOKEN=ghp_...
2) GitHub source from your own fork (temporary workaround)
Use this when access to the official repo token is difficult, but you can fork the marketplace into a personal or easier-to-access repository.
export REGISTRY_GITHUB_REPO=<your-user-or-org>/gen-e2-marketplace
export REGISTRY_GITHUB_TOKEN=ghp_...
3) Local source from a clone of gen-e2-marketplace
Use this for offline development, local debugging, or local integration/E2E tests.
export REGISTRY_PATH=/abs/path/to/gen-e2-marketplace
# or copy .env.example → .env and set it there
Client setup
Both Claude Code and Copilot use the same stdio server; only the client registration format changes.
Claude Code CLI — user-level
claude mcp add lab-registry --scope user \
-e REGISTRY_GITHUB_REPO=GLOBAL-PALO-IT/gen-e2-marketplace \
-e REGISTRY_GITHUB_TOKEN=ghp_... \
-- /abs/path/to/.venv/bin/mcp run /abs/path/to/src/lab_registry/server.py
If you use a fork or a local clone, replace the env vars accordingly.
GitHub Copilot agent mode — ~/Library/Application Support/Code/User/mcp.json
{
"servers": {
"lab-registry": {
"type": "stdio",
"command": "/abs/path/to/.venv/bin/mcp",
"args": ["run", "/abs/path/to/src/lab_registry/server.py"],
"env": {
"REGISTRY_GITHUB_REPO": "GLOBAL-PALO-IT/gen-e2-marketplace",
"REGISTRY_GITHUB_TOKEN": "ghp_..."
}
}
}
}
For local mode, replace the env block with:
{
"REGISTRY_PATH": "/abs/path/to/gen-e2-marketplace"
}
Run
# Visual debug UI (MCP Inspector at http://localhost:6274)
mcp dev src/lab_registry/server.py
# Stdio (for client config)
REGISTRY_GITHUB_REPO=owner/repo REGISTRY_GITHUB_TOKEN=ghp_... mcp run src/lab_registry/server.py
# Unit + integration + E2E tests
REGISTRY_PATH=../gen-e2-marketplace pytest tests/ -v
The 12 tools
list_entries
List all registry entries. Returns a flat list of RegistryEntry objects.
| Parameter | Type | Description |
|---|---|---|
type |
string? |
Filter: "skill", "agent", "command", or "hook" |
plugin |
string? |
Filter by plugin name (e.g. "android") |
tags |
string[]? |
Filter by keywords — OR match (any tag must match) |
// Example: all skills in the android plugin
{ "type": "skill", "plugin": "android" }
search_entries
Keyword search over name, description, and plugin name. Name matches are ranked above description matches.
| Parameter | Type | Description |
|---|---|---|
query |
string |
Search term |
type |
string? |
Optional type filter |
{ "query": "architecture", "type": "skill" }
suggest_entries
Task-oriented suggestion tool. Scores entries against a free-text task description and returns the most relevant matches.
| Parameter | Type | Description |
|---|---|---|
query |
string |
Task description or need |
type |
string? |
Optional type filter |
limit |
integer? |
Maximum number of results |
{ "query": "I need to write tests for a Go service", "type": "skill", "limit": 5 }
get_entry
Fetch the full content of a specific entry. Returns structured metadata and the raw markdown body.
| Parameter | Type | Description |
|---|---|---|
plugin |
string |
Plugin name |
type |
string |
Artifact type |
name |
string |
Artifact name |
{ "plugin": "android", "type": "skill", "name": "android-architecture" }
Response shape:
{
"entry": { "id": "android/skill/android-architecture", "plugin_version": "0.1.0", ... },
"metadata": { "name": "android-architecture", "description": "..." },
"content_raw": "# Android architecture (project delta)\n\n..."
}
get_entry_by_id
Fetch one entry directly from its canonical ID.
| Parameter | Type | Description |
|---|---|---|
id |
string |
Entry ID in plugin/type/name format |
{ "id": "android/skill/android-architecture" }
get_plugin
All entries for one plugin, plus its manifest.
| Parameter | Type | Description |
|---|---|---|
plugin |
string |
Plugin name |
{ "plugin": "research-suite" }
Response: { "manifest": { "version": "1.0.1", ... }, "entries": [...] }
list_plugins
List all indexed plugins with version and per-type entry counts.
Response includes plugin-level summary fields such as version, updated_at, and counts for skills, agents, commands, and hooks.
get_changelog
Return the raw CHANGELOG.md content for a plugin.
| Parameter | Type | Description |
|---|---|---|
plugin |
string |
Plugin name |
{ "plugin": "delivery" }
get_marketplace_stats
Return marketplace-level statistics: totals, counts by type, counts by plugin, and latest update information.
Useful for dashboards, summaries, and quick health checks.
check_compliance
Diff a client's local inventory against the registry. Each item must have name, type, plugin, and local_version.
{
"entries": [
{ "name": "android-architecture", "type": "skill", "plugin": "android", "local_version": "0.1.0" },
{ "name": "my-custom-skill", "type": "skill", "plugin": "android", "local_version": "0.1.0" }
]
}
Response:
{
"outdated": [],
"unknown": [{ "name": "my-custom-skill", "type": "skill", "plugin": "android" }],
"up_to_date_count": 1
}
outdated = version mismatch. unknown = not found in registry. No deprecated detection (field absent from source format).
validate_entry
Validate a skill, agent, or command markdown file structure against the expected schema.
Typical output includes:
validerrorswarnings- parsed frontmatter when available
Useful before contributing a new artefact to the marketplace.
reload_registry
Force reload the in-memory cache from its source (GitHub or local). Use after a marketplace update to get fresh data without restarting the server.
Response: { "added": [...], "removed": [...], "modified": [...], "total": N }
Usage examples
These are natural-language prompts you can use from Copilot Agent mode or Claude Code.
1) Discover what exists
Prompt:
Give me a summary of all available gen-e2 plugins
Typical tools used: list_plugins or get_marketplace_stats
2) Find entries by role or type
Prompt:
List all gen-e2 agents available in the registry
Typical tools used: list_entries with type="agent"
3) Get recommendations for a task
Prompt:
I need to write tests for a Go service. Which gen-e2 skills are relevant?
Typical tools used: suggest_entries (optionally cross-checked with list_entries)
4) Fetch full content by ID
Prompt:
Get the full content of android/skill/android-architecture
Typical tools used: get_entry_by_id
5) Inspect everything in one plugin
Prompt:
Show me everything in the gen-e2 delivery plugin
Typical tools used: get_plugin, then get_entry_by_id for complete raw content per entry
6) Explain version drift
Prompt:
Check if these local entries are up to date and show me what changed in the plugin changelog
Typical tools used: check_compliance then get_changelog
7) Validate a new contribution
Prompt:
Validate this new skill markdown file against the gen-e2 schema
Typical tools used: validate_entry
8) Refresh cache after marketplace updates
Prompt:
Reload the gen-e2 registry and tell me what changed
Typical tools used: reload_registry
Registry coverage
Current state of gen-e2-marketplace as indexed:
| Plugin | Version | Skills | Agents | Commands | Hooks |
|---|---|---|---|---|---|
| android | 0.1.0 | 14 | 9 | 9 | 1 |
| architecture-reviewer | 0.1.0 | 4 | 1 | 0 | 0 |
| delivery | 0.2.3 | 5 | 0 | 0 | 0 |
| dev-workflow | 0.1.0 | 3 | 1 | 4 | 1 |
| figma-design-to-code | 0.1.0 | 1 | 0 | 0 | 0 |
| fortran77-explainer | 0.1.0 | 0 | 1 | 0 | 0 |
| go-tdd-orchestrator | 0.1.0 | 1 | 1 | 0 | 0 |
| html-planner-and-presentation | 0.1.0 | 3 | 0 | 0 | 0 |
| html-presentation | 0.1.0 | 1 | 0 | 0 | 0 |
| implementation-plan | 0.1.0 | 1 | 0 | 0 | 0 |
| kotlin-and-kotlin-multiplatform | 0.1.0 | 4 | 0 | 0 | 0 |
| migration-implementation-plan | 0.1.0 | 1 | 0 | 0 | 0 |
| research-suite | 1.0.1 | 2 | 0 | 0 | 0 |
| swift5-development-test-writer | 0.1.0 | 2 | 0 | 0 | 0 |
| Total | 43 | 13 | 13 | 2 |
74 artefacts indexed across 14 plugins. updated_at is null for 4 plugins without CHANGELOG.md.
Tests
tests/
conftest.py # session fixture: mock registry with 1 plugin / 4 artefacts
test_registry.py # unit: indexer, parsers, cache (25 tests)
test_tools_search.py # unit: list_entries, search_entries (11 tests)
test_tools_fetch.py # unit: get_entry, get_plugin (8 tests)
test_tools_compliance.py # unit: check_compliance (6 tests)
test_tools_reload.py # unit: reload_registry (4 tests)
test_tools_new.py # unit: 6 new tools — list_plugins, get_entry_by_id,
# get_changelog, get_marketplace_stats,
# suggest_entries, validate_entry (35 tests)
test_contract.py # contract: response shapes for all tools (38 tests)
test_registry_github.py # GitHub source mode (mocked HTTP, 16 tests)
test_integration.py # real marketplace: IDs, content, handlers (15 tests)
test_e2e.py # full MCP subprocess — all 12 tools (20 tests)
177 tests total, 0 failures.
E2E and integration tests are skipped if REGISTRY_PATH is not set.
GitHub tests use fully mocked HTTP — no network access required.
Known limitations
- No per-artifact versioning — version is at plugin level; a plugin bump marks all its artefacts as outdated even if only one changed
- No deprecated detection — no
deprecatedflag in the source format updated_atis best-effort — parsed fromCHANGELOG.md;nullif absent- Cache on demand — use
reload_registrytool to refresh without restarting the server - Hooks indexed one entry per plugin — not per event type
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.