Skip to main content
Glama

Submit Skill

submit_skill

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).

Input Schema

TableJSON 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.

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A3.9/5.0
Disambiguation5/5

Each tool targets a distinct resource and action: Brain files are handled by brain_get/list/search/write, while skills are handled by get/install/search/submit_skill. Even the two 'get' tools differ clearly by resource type in their names and descriptions.

Naming Consistency3/5

The Brain tools consistently use a noun_verb pattern (brain_get, brain_list, brain_search, brain_write), but the skill tools switch to verb_noun (get_skill, install_skill, search_skills, submit_skill). The mixed ordering is readable but not fully consistent across the tool set.

Tool Count5/5

Eight tools is well-scoped for a server covering two related domains: personal Brain memory and skill catalog management. Each tool serves a clear purpose without redundancy or bloat.

Completeness4/5

The Brain domain covers list, get, search, and write, but lacks a delete/remove operation. The skill domain covers search, inspect, install, and submit, which supports the main workflows. Overall the surface is strong with only minor gaps.

Resources