Skip to main content
Glama

Server Details

Search, install and submit Markdown skills for AI agents; private Brain files when signed in.

If you are the author of this connector, you can claim ownership with GitHub, an HTTP challenge, or a DNS record. Claimed connector authors can inspect health checks, view analytics, and manage their listing.
Status
Healthy
Last Tested
Transport
Streamable HTTP
URL

Available Tools

9 tools
brain_getBrain GetAInspect

Read one Brain file by name (e.g. coding-conventions.md), across your brains and brains shared with you. Needs your agent bearer token.

ParametersJSON Schema
NameRequiredDescriptionDefault
nameYesFile name including .md
brainNoOptional brain to read from (owner-handle/name for shared brains). Omit to search all your brains.

TDQS

A4/5.0
Behavior4/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 operation type ('Read'), the scope ('across your brains and brains shared with you'), and the auth requirement ('Needs your agent bearer token'). It does not mention potential ambiguity when the same file name exists in multiple brains, but for a simple read it is fairly transparent.

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 with no filler. The action and example are front-loaded, and the auth note is one short clause. Every sentence contributes a distinct piece of information.

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?

For a two-parameter read tool with no output schema and no annotations, the description covers what it does, the scope, and required auth. It lacks details on return format or error behavior, but these are not essential to selecting and invoking the tool correctly.

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?

Schema description coverage is 100%, so the schema already documents both 'name' and 'brain'. The description adds a concrete file-name example and clarifies scope across shared brains, but this is modest added value beyond the structured schema.

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 uses a specific verb ('Read'), a clear resource ('one Brain file by name'), and a concrete example ('coding-conventions.md'). It differentiates from siblings by emphasizing exact-name lookup rather than listing or searching, so an agent can tell it apart from brain_list and brain_search.

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 implies the tool is for reading a known file name across all accessible brains, and mentions the auth requirement. However, it does not explicitly state when to prefer this over brain_search or brain_list, nor does it describe exclusions or prerequisites beyond the token.

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

brain_listBrain ListAInspect

List the files in your Brains (named sets of private Markdown memory), including brains shared with you. Needs your agent bearer token. Returns the brain, your role in it, name, folder, size, whether the file is in the agent context and shared with members, and when it changed.

ParametersJSON Schema
NameRequiredDescriptionDefault
brainNoOptional brain name; for a brain shared with you, owner-handle/name (e.g. jan/Team). Omit to list every brain.
folderNoOptional folder filter, e.g. Engineering.

TDQS

A4.3/5.0
Behavior4/5

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

With no annotations, the description carries the full burden. It discloses the authentication requirement and enumerates the complete return field list (brain, role, name, folder, size, context membership, sharing status, change time). The read-only nature is implied by 'List'. It omits potential pagination/limit behavior but covers the essentials.

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?

Two sentences, front-loaded with the primary action and scope, followed by the auth and response details. Every clause carries information; there is no filler or repetition of schema content.

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

Completeness5/5

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

Although there is no output schema, the description explains what a Brain is, defines the list scope, states the auth requirement, and enumerates the returned fields. For a simple, zero-required-parameter listing tool, this is sufficient for correct invocation and interpretation of results.

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?

Schema description coverage is 100%, so the schema already documents both optional parameters (brain and folder) with format examples. The description adds no parameter-specific detail beyond the schema; the 'shared with you' mention echoes the schema's owner-handle/name format. Baseline 3 is appropriate.

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 uses a specific verb and resource: 'List the files in your Brains', and further clarifies scope with 'including brains shared with you'. This clearly differentiates it from siblings like brain_get (single-item retrieval), brain_search (query), and brain_write (mutation) without needing to open schemas.

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 usage context (listing files in personal and shared brains) and a key prerequisite (bearer token). It doesn't explicitly name alternatives or exclusion conditions, but the purpose is specific enough that an agent can infer when to choose this over a search/get/write tool.

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

brain_writeBrain WriteAInspect

Create or update a Brain file. Writes to your default brain unless you name one; shared brains need editor access. Replaces the whole body (use mode "append" to add to the end); the previous body is kept as a version. Credentials are refused — the Brain is memory, not a vault. Needs your agent bearer token.

ParametersJSON Schema
NameRequiredDescriptionDefault
bodyYesMarkdown content.
modeNoreplace (default) or append.
nameYesFile name ending in .md, e.g. customer-faq.md
brainNoBrain to write into (owner-handle/name for shared brains, needs editor access). Omit for your default brain.
folderNoFolder, e.g. Company. New files default to "Agent".

TDQS

A4.7/5.0
Behavior5/5

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

With no annotations, the description carries the full behavioral burden and does so impressively. It discloses that the whole body is replaced, the previous body is kept as a version, credentials are refused, bearer token auth is required, and editor access is needed for shared brains.

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?

Four dense sentences, each earning its place: purpose, default targeting and permissions, replacement/append semantics, and security. No filler or redundancy, and the most important behavioral information is front-loaded.

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

Completeness5/5

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

For a write tool with no output schema, the description is complete: target selection, access prerequisites, mode behavior, versioning, and auth are all covered. An agent has enough to invoke the tool correctly without needing to open the schema.

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?

Schema coverage is 100%, so the baseline is 3. The description adds meaningful semantics beyond the schema: the default-brain behavior when 'brain' is omitted, the access requirement for shared brains, and the version-retention consequence of replace mode. This goes beyond simple restatement.

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 opens with a specific verb-resource pair, 'Create or update a Brain file,' which clearly identifies the tool's function. It is immediately distinguishable from the read/search siblings like brain_get, brain_list, and brain_search.

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 usage context: writes to the default brain unless another is named, shared brains need editor access, and mode 'append' adds to the end while the default replaces. It doesn't explicitly contrast against read tools or say when not to use it, but the sibling names make the primary distinction obvious.

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

get_collectionGet CollectionAInspect

Curated bundles of skills. Without an argument: list the available collections (slug, name, size). With a slug: the skills in that collection, in order — then call install_skill for each one the user wants (usually all).

ParametersJSON Schema
NameRequiredDescriptionDefault
collectionNoCollection slug, e.g. laravel-starter. Omit to list all collections.

TDQS

A4.2/5.0
Behavior4/5

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

With no annotations, the description carries the behavioral burden and does well by explaining the no-argument vs. slug behavior and that skills are returned in order. It also implies this is a read-only lookup by instructing the agent to call install_skill separately for installation. It does not mention error behavior or edge cases, but for a simple get/list tool the core behavior is transparent.

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-loads the core concept, and uses a clear branching structure for the optional argument. Every phrase earns its place, including the practical 'usually all' guidance for follow-up installation.

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?

Since there is no output schema, the description adequately describes return content: collection lists include slug, name, and size; slug queries return ordered skills. It also provides the next logical action (install_skill). It could mention invalid-slug behavior or the full shape of a skill entry, but those are minor gaps for a tool this simple.

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?

Schema coverage is 100%: the schema already documents the collection slug and that omitting it lists all collections. The description reinforces this behavior and adds the 'in order' detail for the resulting skills, but it does not significantly expand the parameter meaning beyond what the schema already provides.

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 specifies two concrete behaviors: listing all collections when no argument is given, and returning the ordered skills in a collection when a slug is given. This clearly identifies the tool's resource (skill collections) and distinguishes it from sibling tools like get_skill or search_skills.

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?

It gives clear conditional guidance: omit the argument to list collections, or pass a slug to view its skills. It also tells the agent to follow up with install_skill for each desired skill, which is strong usage direction. It does not explicitly contrast with get_skill or search_skills, so it misses full alternative routing.

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

get_skillGet SkillAInspect

Read a skill's Markdown to inspect it (does not install anything). To install, call install_skill — it returns the file plus the exact path to write it to. Pass version to pin one.

ParametersJSON Schema
NameRequiredDescriptionDefault
skillYesowner/name, e.g. opsmith/jira-ticket-scorer
versionNoPin a version number; omit for latest.

TDQS

A4.5/5.0
Behavior4/5

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

With empty annotations, the description carries the full burden and does well by disclosing the read-only nature ('Read', 'does not install anything') and implying return content (the skill's Markdown). It does not describe error cases or invalid-version handling, which keeps it a step below 5.

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?

Two sentences with no wasted words: the core action is front-loaded, the safety distinction from install_skill is immediate, and the version note is included naturally. Each sentence contributes to correct tool selection or invocation.

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

Completeness5/5

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

For a simple two-parameter read tool, all needed context is present: what it reads, what it does not do, when to use the sibling instead, and how the version parameter behaves. The absence of an output schema is adequately addressed by the description's indication that the result is the skill's Markdown.

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?

Schema description coverage is 100%, so the schema already documents both the skill identifier format and the optional version pinning. The description restates the version pinning but adds no new semantic detail beyond what the schema provides, matching the baseline of 3.

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?

States a specific verb and resource: reads a skill's Markdown for inspection. It clearly distinguishes itself from install_skill by explicitly noting that it does not install anything, so an agent can tell the tools apart without opening schemas.

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

Usage Guidelines5/5

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

Explicitly names install_skill as the alternative and the condition for choosing it ('To install'), including what install_skill returns. This leaves no ambiguity about when to use get_skill versus its sibling. Version usage is also briefly addressed.

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

install_skillInstall SkillAInspect

Install a skill into the agent you are running in. Returns the complete skill file and the exact path to write it to — YOU must then create that file verbatim (Claude Code: .claude/skills//SKILL.md, so it becomes available as /; other agents: ./skills/.md) and tell the user where it is. Counts the install. Use target=hermes for Hermes Agent, target=generic for any other agent, scope=user to install for all Claude Code projects. When emdly agent hosting is enabled and you have a hosted agent, pass agent= to install there instead.

ParametersJSON Schema
NameRequiredDescriptionDefault
agentNoHosted agent name (only when emdly agent hosting is enabled and you have one).
scopeNoClaude Code only: project (default, .claude/skills in the current project) or user (~/.claude/skills, every project).
skillYesowner/name, e.g. opsmith/jira-ticket-scorer
targetNoWhere the file goes: claude-code (default) → .claude/skills/<name>/SKILL.md; hermes → ~/.hermes/skills/<category>/<name>/SKILL.md; generic → ./skills/<name>.md.

TDQS

A4.3/5.0
Behavior4/5

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

With empty annotations, the description carries the full burden, and it discloses a crucial non-obvious behavior: the tool does not write the file itself — 'YOU must then create that file verbatim.' It also reveals the side effect 'Counts the install' and specifies exact installation paths per target, which is more than most definitions provide.

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

Conciseness4/5

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

The description is dense but not bloated; every sentence contributes critical information. The core purpose is front-loaded, followed by the return contract and parameter routing. It is longer than average, but the complexity of the tool (multiple targets, follow-up write action) justifies the length.

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?

There is no output schema, so the description correctly explains return values (complete skill file and path) and the required post-call action. It covers all parameter scenarios and paths. Minor omissions like overwrite behavior, error cases, and more detail on 'Counts the install' prevent a 5.

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?

Schema coverage is 100%, so the baseline is 3. The description adds value by prescribing parameter choices for real-world scenarios: target=hermes, target=generic, scope=user for all projects, and agent= for hosted agents. This goes beyond the schema's field descriptions and helps the agent choose correct values.

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 opens with a specific verb and resource: 'Install a skill into the agent you are running in.' It goes on to describe the return contract (complete skill file and exact path) and the agent's required follow-up, which clearly distinguishes this from sibling tools like get_skill, search_skills, and submit_skill.

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 explicit selection guidance for target ('Use target=hermes for Hermes Agent, target=generic for any other agent'), scope ('scope=user to install for all Claude Code projects'), and agent ('pass agent= to install there instead'). It does not explicitly contrast with alternative tools, but the parameter routing rules are concrete and actionable.

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

search_skillsSearch SkillsAInspect

Use this FIRST, before any non-trivial task, to find a ready-made skill in the emdly catalog (reviewed Markdown playbooks for AI agents). Query with 1–3 short keywords naming the kind of work (e.g. "code review", "jira", "seo audit"); words are matched independently, so a sentence works too. If the result is empty, retry with a single noun, or send an empty query for the top skills. Returns ranked skills with their owner/name id, category, description and install command.

ParametersJSON Schema
NameRequiredDescriptionDefault
queryYes1–3 short keywords for the kind of work (each word is matched on its own against name, description, tags, category and author). Empty = the most popular skills.
categoryNoOptional category slug or name, e.g. code-review.

TDQS

A4.2/5.0
Behavior4/5

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

With empty annotations, the description carries the full behavioral burden and it does reveal meaningful semantics: words are matched independently, empty queries return top skills, and results are ranked with specific fields. It does not explicitly state side-effect-free behavior, but for a search tool this is not a critical omission.

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?

Four sentences, each carrying a distinct purpose: guidance, query tips, empty-result fallback, and return shape. No filler or repetition, and the most actionable instruction is placed first.

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

Completeness5/5

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

For a simple two-param search tool with no output schema, this description is complete. It tells the agent when to invoke it, how to query, how to recover from empty results, and what the response will contain, which is everything needed to call it correctly.

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?

Schema coverage is 100%, giving a baseline of 3; the description adds value beyond the schema by giving example keywords, explaining independent matching, and advising empty-query fallback behavior. It doesn't discuss the optional category filter, but the schema already covers it well.

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 tool searches for ready-made skills in the emdly catalog, using a specific verb and resource. However, it does not explicitly distinguish itself from siblings like get_skill or brain_search, so it lacks the full sibling differentiation required for a 5.

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?

Strong situational guidance is provided ('Use this FIRST, before any non-trivial task') along with concrete query and retry instructions. It lacks explicit exclusions, such as 'When you already have a skill ID, use get_skill,' so it stops short of a 5.

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

submit_skillSubmit SkillAInspect

Submit a skill to emdly for review (needs sign-in). Creates it under your account — or a new version if you already own one with this name — runs the automated checks and the AI safety scan, and queues it for a human reviewer. Nothing is published by this tool; you get the check results back. The body must be a complete Markdown skill with a title and a "## License" section (MIT recommended).

ParametersJSON Schema
NameRequiredDescriptionDefault
bodyYesFull Markdown: # title, when to use, rules, output format, ## License
nameYeskebab-case skill name, unique within your account
noteNoRelease note when submitting a new version of an existing skill.
categoryNoCategory name; required for a new skill.

TDQS

A4.6/5.0
Behavior5/5

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

With no annotations, the description carries the full burden, and it does well. It explicitly discloses that the tool creates content under the account, may create a new version, runs automated checks and an AI safety scan, queues for human review, and does not publish anything.

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?

Three sentences, front-loaded with the core purpose and prerequisite, then expanding into effects and requirements. There is no filler or redundant repetition of schema fields.

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?

The description covers prerequisites, side effects, and the fact that check results are returned, which is strong given there is no output schema. Still, it could clarify what happens if checks fail and give slightly more detail about the returned check results.

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?

Schema coverage is 100%, so the baseline is 3. The description adds meaningful context beyond the schema by explaining versioning behavior for existing names and emphasizing body requirements. This helps an agent understand how the name, body, and note parameters interact.

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 states a specific action ('Submit a skill to emdly for review'), a clear resource, and the expected outcome. It also distinguishes this tool from siblings like install_skill and search_skills by emphasizing review-only submission rather than publishing or retrieval.

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 gives clear context: sign-in is required, a new version is created if the name already exists, and the body must be complete Markdown with a title and License section. It does not explicitly name alternatives or say when not to use this tool, but the review-focused wording makes the intended use fairly obvious.

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. 2 tool updates
    • Changedbrain_search1 field changed
      • changedInput schema / properties / query / description
        Previous value: -"Case-insensitive phrase to look for."New value: +"Keywords to look for; each word is matched on its own, case-insensitively."
    • Changedsearch_skills1 field changed
      • changedInput schema / properties / query / description
        Previous value: -"Free-text search over name and description."New value: +"1–3 short keywords for the kind of work (each word is matched on its own against name, description, tags, category and author). Empty = the most popular skills."
  2. 1 tool update
    • Addedget_collection
  3. 8 tool updates
    • First observedbrain_get
    • First observedbrain_list
    • First observedbrain_search
    • First observedbrain_write
    • First observedget_skill
    • First observedinstall_skill
    • First observedsearch_skills
    • First observedsubmit_skill

Frequently Asked Questions

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Connectors

Related MCP Servers

  • A
    license
    A
    quality
    B
    maintenance
    Search, install, and manage AI agent skills (SKILL.md files) from GitHub repositories. Features workspace analysis for personalized recommendations and supports 140+ pre-indexed skills.
    9
    20
    12
    Creative Commons Attribution Non Commercial Share Alike 4.0 International
  • A
    license
    A
    quality
    C
    maintenance
    Enables discovery and installation of agent skills from curated GitHub repositories, allowing users to search large collections and inspect skill contents directly. It supports downloading skills locally and provides grounded scaffolds for creating new skills based on existing patterns.
    5
    2
    MIT
  • A
    license
    A
    quality
    B
    maintenance
    Enables AI agents to autonomously search, evaluate, and install skills from the skills.sh catalog.
    2
    4
    13
    ISC
Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.2/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose: brain_get/brain_list/brain_search/brain_write cover memory operations, while get_collection/get_skill/install_skill/search_skills/submit_skill handle skill discovery, retrieval, installation, and submission. No two tools overlap in function; even the search vs get pairs are distinct.

Naming Consistency3/5

The brain_* prefix provides a consistent pattern for memory tools, but the skill tools use mixed conventions: get_collection, get_skill, install_skill, search_skills, submit_skill — no shared prefix or uniform verb_noun structure. This inconsistency is noticeable but each name is still readable.

Tool Count5/5

With 9 tools covering two domains (memory and skills), the count is well-scoped. Each tool earns its place, and the number is within the ideal range for a focused server.

Completeness4/5

The brain tools cover list, get, search, and write, but lack an explicit delete operation. The skill tools cover search, get, install, submit, and collection listing, but no uninstall. These are minor gaps that agents can work around; the core workflows are complete.

Resources