MCP Tools
The Lore MCP Server exposes the following tools via the Model Context Protocol.
lore_get
Get a Lore package by identifier and render it for the current AI runtime.
Parameters:
| Parameter | Type | Required | Description |
|---|---|---|---|
package | string | Yes | Package identifier: <namespace>/<name>:<version> |
target | string | No | Runtime target override (e.g., claude-code, cursor, raw) |
language | string | No | Content language (e.g., pt-BR). Defaults to en-US. |
Example:
lore_get(package: "m1cloud/azure-architect:1.0.0")
lore_get(package: "m1cloud/azure-architect:1.0.0", target: "cursor")lore_search
Search for packages in the registry.
Parameters:
| Parameter | Type | Required | Description |
|---|---|---|---|
query | string | Yes | Search query |
kind | string | No | Filter by kind: Skill, Rule, Spec, Template |
namespace | string | No | Filter by namespace |
limit | number | No | Max results (default: 10) |
lore_resolve
Resolve dependencies for a package.
Parameters: package (string, required)
lore_list
List packages in a namespace.
Parameters: namespace (string, required), kind (string, optional), limit (number, optional)
lore_versions
List all published versions of a package.
Parameters: package (string, required) — <namespace>/<name> without version.