Skip to main content
Glama
AgentBase1
by AgentBase1

AgentBase MCP Server

Listed on awesome-mcp-servers Glama Score

MCP server for the AgentBase agent instruction registry. Gives any MCP-compatible AI agent direct access to search and retrieve instruction files.

Listed in punkpeye/awesome-mcp-servers — 83k+ stars.

What It Does

AgentBase is an open registry of agent instruction files: system prompts, skills, workflows, domain packs, safety filters, and orchestration patterns. This MCP server wraps the registry's HTTP endpoints and exposes them as structured MCP tools.

Related MCP server: Clawslist MCP Server

Tools

Tool

Description

search_registry

Search instruction files by keyword, domain, or type

get_file

Retrieve a specific instruction file by ID

list_categories

List all available categories and domains

get_featured

Get featured/top-rated instruction files

Install

{
  "mcpServers": {
    "agentbase": {
      "command": "npx",
      "args": ["-y", "@agentbase1/mcp-server"]
    }
  }
}

Use Cases

  • AI agents that need to load domain-specific instructions at runtime

  • Claude Code workflows that pull skills from a shared registry

  • Teams sharing system prompts and workflows across agents

  • Safety filter retrieval for production AI deployments

Registry

Browse the full registry at agentbase-registry.vercel.app.

CC0 licensed. All instruction files are free to use without restriction.

Built By

Chris Izworski — Solutions Consultant at Prepared, former Michigan 911 Executive Director, and AI implementer. Bay City, Michigan.

Available Tools

4 tools
get_instructionA

Fetch a complete instruction file from the OpenClaw registry by slug. Returns the full Markdown file including YAML frontmatter, purpose, usage notes, and the deployable instruction text. The instruction is in the "## The Instruction" section.

ParametersJSON Schema
NameRequiredDescriptionDefault
slugYesThe slug of the instruction file (e.g. "tier1-customer-support", "structured-web-research"). Get slugs from search_registry.
instruction_onlyNoIf true, return only the deployable instruction text (extracted from the fenced code block). If false, return the full Markdown file. Default: false.

TDQS

A4/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden. It discloses the return format (full Markdown or extracted instruction text) and hints at the structure (YAML frontmatter, sections), but lacks details on error handling, rate limits, or authentication needs. It adds some behavioral context but is not comprehensive.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is front-loaded with the core purpose, followed by details on return content and parameter implications. Every sentence adds value without redundancy, making it efficient and well-structured for quick understanding.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's moderate complexity (2 parameters, no output schema, no annotations), the description is mostly complete. It covers purpose, usage context, and return behavior, but lacks explicit error handling or output examples, which could enhance completeness for an agent.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema has 100% description coverage, so the baseline is 3. The description adds minimal value beyond the schema by mentioning the '## The Instruction' section, which relates to the 'instruction_only' parameter, but does not provide additional syntax or format details. It compensates slightly but not significantly.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the specific action ('Fetch'), resource ('complete instruction file from the OpenClaw registry'), and distinguishes it from siblings by specifying it retrieves by slug rather than listing categories or searching. It explicitly mentions the return content format, making the purpose unambiguous.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides clear context by stating that slugs should be obtained from 'search_registry', which implicitly guides when to use this tool versus alternatives. However, it does not explicitly state when not to use it or name specific alternatives, keeping it from a perfect score.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

list_categoriesB

List all categories in the OpenClaw registry with file counts and descriptions. Use this to understand what types of instruction files are available.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

B3.4/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden of behavioral disclosure. It mentions the tool lists categories with file counts and descriptions, but doesn't cover critical aspects like whether this is a read-only operation, potential rate limits, authentication needs, or how results are structured (e.g., pagination). For a tool with zero annotation coverage, this leaves significant gaps in understanding its behavior.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two sentences, front-loaded with the core purpose and followed by a usage hint. Every sentence adds value without redundancy, making it efficient and well-structured for quick comprehension.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's low complexity (0 parameters, no output schema, no annotations), the description is adequate for basic understanding but incomplete. It covers what the tool does and a usage context, but lacks behavioral details (e.g., safety, performance) that would be important even for simple tools, especially without annotations to fill those gaps.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The tool has 0 parameters, and the schema description coverage is 100% (since there are no parameters to describe). The description appropriately doesn't add parameter details beyond what the schema provides, which is minimal. A baseline of 4 is applied for zero-parameter tools as they inherently require less parameter documentation.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('List all categories') and resource ('OpenClaw registry'), specifying what information is returned ('file counts and descriptions'). It distinguishes from siblings by focusing on categories rather than individual instructions or searches, though it doesn't explicitly contrast with sibling tools like get_featured.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides implied usage context ('to understand what types of instruction files are available'), suggesting this tool is for discovery and overview. However, it lacks explicit guidance on when to use this versus alternatives like search_registry or get_instruction, and doesn't mention any prerequisites or exclusions.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

search_registryA

Search the OpenClaw agent instruction registry. Returns matching instruction files with metadata. Use this to find system prompts, skills, workflows, domain packs, safety filters, and orchestration patterns.

ParametersJSON Schema
NameRequiredDescriptionDefault
qNoKeyword search across title, tags, and slug. Optional.
categoryNoFilter by category. One of: system-prompts, skills, workflows, tool-definitions, domain-packs, safety-filters, orchestration
min_qualityNoMinimum quality score (0-100). Recommended: 80 for production use.
featured_onlyNoIf true, return only featured (quality >= 90) files.

TDQS

A3.9/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. It states the tool returns 'matching instruction files with metadata,' which implies a read-only search operation, but does not disclose other behavioral traits such as authentication requirements, rate limits, pagination, error handling, or what the metadata includes. This leaves significant gaps in understanding how the tool behaves beyond its basic function.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two sentences that are front-loaded with the core purpose and usage context, with zero wasted words. Every phrase ('Search the OpenClaw agent instruction registry,' 'Returns matching instruction files with metadata,' 'Use this to find...') directly contributes to clarity and guidance, making it highly efficient and well-structured.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's moderate complexity (4 parameters, no output schema, no annotations), the description is adequate but incomplete. It covers the purpose and usage context well, but lacks details on behavioral aspects (e.g., response format, error cases) and doesn't compensate for the missing output schema. This makes it minimally viable but with clear gaps in providing a full operational picture.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema description coverage is 100%, so the schema already documents all four parameters thoroughly. The description does not add any parameter-specific details beyond what the schema provides (e.g., it doesn't explain search syntax for 'q' or elaborate on 'min_quality' beyond the schema's 'Recommended: 80'). Thus, it meets the baseline for high schema coverage but doesn't enhance parameter understanding.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the specific action ('Search') and resource ('OpenClaw agent instruction registry'), and distinguishes it from siblings by specifying it returns 'matching instruction files with metadata' rather than getting featured items, single instructions, or listing categories. It provides concrete examples of what can be found (system prompts, skills, workflows, etc.), making the purpose highly specific and differentiated.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides clear context for when to use this tool ('to find system prompts, skills, workflows, domain packs, safety filters, and orchestration patterns'), which implicitly suggests alternatives like the sibling tools for other purposes (e.g., get_featured for featured items). However, it does not explicitly state when NOT to use this tool or name specific alternatives, which prevents a perfect score.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 4 tool updatesv1.0.2
    • First observedget_featured
    • First observedget_instruction
    • First observedlist_categories
    • First observedsearch_registry

TDQS

A4/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose with no overlap: get_featured retrieves high-quality files, get_instruction fetches a specific file by slug, list_categories shows available categories, and search_registry performs keyword searches. The descriptions reinforce these unique roles, making tool selection straightforward for an agent.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern (get_featured, get_instruction, list_categories, search_registry) using snake_case throughout. This predictability enhances readability and usability, with no deviations in style or convention.

Tool Count5/5

With 4 tools, the server is well-scoped for its purpose of accessing an instruction registry. Each tool serves a distinct function (browsing, fetching, categorizing, searching), and there are no redundant or missing tools that would suggest over- or under-engineering.

Completeness5/5

The tool set provides complete coverage for interacting with an instruction registry: it supports discovery (list_categories, search_registry), retrieval (get_instruction), and quality filtering (get_featured). No obvious gaps exist, as agents can navigate from browsing to accessing specific instructions seamlessly.

Maintenance

ActivityInactive
ResponsivenessSyncing

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    C
    maintenance
    Enables access to agent instruction files and prompts for AI development workflows. Provides tools to retrieve and list development rules, security checks, and common prompts from an agents library through MCP protocol.
    3
    Apache 2.0
  • A
    license
    B
    quality
    D
    maintenance
    Enables AI agents to interact with the Clawslist marketplace to browse, create, and manage listings using the Model Context Protocol. It provides a comprehensive set of tools for agent registration, messaging, and offer management directly within MCP-compatible clients.
    19
    15
    MIT
  • A
    license
    A
    quality
    F
    maintenance
    Agent-first skill marketplace MCP server. AI agents discover, install, and share skills across 7 platforms via MCP protocol. 15 tools including skill search, download, upload, and agent discovery.
    18
    4
    MIT

Latest Blog Posts

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/AgentBase1/mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server