Agent Plugins Marketplace
All plugins

geml

v1.10.3

Block-addressed docs for your agent: read or replace one section of an existing Markdown file instead of loading the whole thing. Ships the CLI, an MCP server, and a code-graph navigator. Optional: upgrade a doc to GEML for validated writes and per-block history.

Claude Code2 Skills1 MCP serverstdio

By geml-specLicense: MIT26 GitHub starsUpdated last week

Directory evidence

Runtimes
Claude Code
Parsed components
3 skill or MCP entries
Source updated
Sep 14, 2026
Manifest status
Canonical path parsed

The directory validates manifest shape and source location. It does not execute the plugin or provide a security endorsement. Review the indexing methodology

Install geml for Claude Code

Installs for the current user
claude plugin marketplace add IchenDEV/agent-plugin-mkt
claude plugin marketplace update agent-plugin-marketplace
claude plugin install geml@agent-plugin-marketplace

Paste and run these commands in a terminal with Claude Code. They add and refresh the PluginsMP catalog, then install this plugin.

The installer fetches third-party code from the source repository shown on this page. This directory validates manifest structure and source location, but does not perform a security audit; review the manifest, components, and source before installing.

Get the source manually
git clone https://github.com/geml-spec/geml

Clone the source repository, then follow its setup instructions to add the plugin to a compatible client. The plugin root is integrations/claude-plugin/.

Plugin files

integrations/claude-plugin/
├── .claude-plugin/plugin.json
├── skills/geml/SKILL.md
├── skills/geml-code-graph/SKILL.md
└── .mcp.json

Included Skills2

gemlskills/geml/SKILL.md

Address a document by its BLOCKS instead of reading it whole. Use for any long Markdown or documentation file — README, spec, guide, design doc, changelog — when the job is to find where something is documented, read one section, or change one section: `geml list`, `geml find` and `geml get` read Markdown directly and hand back the one block that matters, leaving the file the Markdown it already was. Skip it when the whole file is short enough to read anyway. Use it also to read, author, edit or validate GEML itself — .geml files, .gemlhistory sidecars, typed blocks, === fences, geml-chart, converting Markdown to GEML — where the output must parse cleanly (zero error diagnostics) against the reference parser.

geml-code-graphskills/geml-code-graph/SKILL.md

Build, view, update, and navigate a project's call graph as GEML codemap documents. Use when asked to see/update/build a project's code graph or codemap (看下/更新下 code-graph), when asked "who calls X" / "what does X call" / to trace a call chain or impact path, or whenever a .geml-code-graph/ directory with index.geml and _index/name-lookup.json exists. Detects the project's languages itself — never asks the user; viewing ends with the browser OPEN on the graph.

MCP servers1

gemlstdio
command
npx
args
-y @geml/geml mcp --root .

Plugin manifests1

integrations/claude-plugin/.claude-plugin/plugin.json
{
  "name": "geml",
  "version": "1.10.3",
  "description": "Block-addressed docs for your agent: read or replace one section of an existing Markdown file instead of loading the whole thing. Ships the CLI, an MCP server, and a code-graph navigator. Optional: upgrade a doc to GEML for validated writes and per-block history.",
  "author": {
    "name": "geml-spec",
    "url": "https://github.com/geml-spec"
  },
  "homepage": "https://github.com/geml-spec/geml",
  "repository": "https://github.com/geml-spec/geml",
  "license": "MIT",
  "keywords": [
    "geml",
    "markup",
    "documents",
    "authoring",
    "mcp",
    "codemap",
    "call-graph"
  ],
  "mcpServers": {
    "geml": {
      "command": "npx",
      "args": [
        "-y",
        "@geml/geml",
        "mcp",
        "--root",
        "."
      ]
    }
  }
}

If you maintain this plugin, link to this source-backed listing from your README so users can review its manifest and indexed components.

[geml on Agent Plugins Marketplace](https://pluginsmp.com/plugins/geml)