Skip to main content
Glama

Electrik Slate

Server Details

Read-only MCP for Electrik Slate: Blade component docs, blocks gallery, source, and llms.txt.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
electrikhq/slate
GitHub Stars
11

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

Full call logging

Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.

Tool access control

Enable or disable individual tools per connector, so you decide what your agents can and cannot do.

Managed credentials

Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.

Usage analytics

See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.

100% free. Your data is private.
Tool DescriptionsA

Average 3.7/5 across 5 of 6 tools scored. Lowest: 3.1/5.

Server CoherenceA
Disambiguation4/5

Tools are mostly distinct: component docs vs. source vs. general docs vs. index vs. lists are clearly different. Minor overlap: get_component_docs and get_docs_page both fetch docs markdown, but one is specific to components, the other to page paths, so confusion is low risk.

Naming Consistency5/5

All tools follow a consistent verb_noun pattern: get_*, list_* with clear noun targets (component_docs, component_source, docs_page, llms_index, blocks, components). The pattern is uniform and predictable.

Tool Count4/5

With 6 tools, the server is well-scoped for a documentation server. The count is appropriate; it covers fetching docs, source, index, and listing components/blocks, without excess. Could argue a couple more might be useful (e.g., search), but it earns a high score.

Completeness3/5

The server covers documentation and source retrieval, plus listing of components and blocks, but lacks a search tool and lacks update/write operations (though that may be out of scope for a read-only docs server). Some common docs operations like searching or fetching versioned docs are missing, so it's not fully complete.

Available Tools

6 tools
get_component_docsAInspect

Fetch markdown documentation for a Slate component (e.g. button, dialog, input).

ParametersJSON Schema
NameRequiredDescriptionDefault
nameYesComponent slug, e.g. button, alert-dialog, dark-mode-toggle
Behavior3/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. It discloses that it fetches markdown documentation (a read operation), but does not mention error behavior (e.g., missing component), rate limits, or other constraints. It adds only a minimal behavioral profile.

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?

Single sentence, front-loaded with the key action and resource, and includes a relevant example list. No wasted words.

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 simple one-parameter fetch tool, the description adequately covers purpose and parameter. No output schema exists, but the return type (markdown docs) is stated. It lacks error-handling or edge-case notes, but the simplicity of the tool keeps it mostly complete.

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% and the parameter 'name' is well-documented with examples. The description repeats the same examples (button, dialog, input) without adding new meaning beyond the schema. 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 states the verb 'Fetch' and the resource 'markdown documentation for a Slate component'. It distinguishes itself from siblings like get_component_source (source code) and get_docs_page (generic docs) by specifying the component doc target with examples.

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 gives clear context (use for Slate component docs) but does not explicitly contrast with sibling tools or state when not to use. It implies usage by mentioning component names, but lacks explicit alternatives or exclusions.

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

get_component_sourceAInspect

Fetch the primary Blade source for a Slate component from the 3.x GitHub branch.

ParametersJSON Schema
NameRequiredDescriptionDefault
nameYesComponent slug, e.g. button, dialog, toaster
Behavior3/5

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

No annotations are provided, so the description carries the burden. It mentions fetching from a specific branch, but does not disclose output format, error behavior, or potential network/rate-limit considerations. Some context is added, but 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?

A single, front-loaded sentence that immediately conveys the action, target, and branch. Every word earns its place with no unnecessary filler.

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 tool with one parameter and no output schema, the description is sufficiently complete. It specifies what is fetched and from where, which is enough to guide invocation.

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 already fully describes the single parameter 'name' with examples. The description adds no additional semantic detail beyond what is in the schema, so baseline 3 applies.

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 the specific verb 'Fetch' and clearly identifies the resource: 'primary Blade source for a Slate component from the 3.x GitHub branch.' This distinguishes it from sibling tools like get_component_docs and list_components.

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 context of fetching source is clear, but there is no explicit guidance on when to use this tool instead of get_component_docs or others. The distinction is implied by the term 'source' but not spelled out.

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

get_docs_pageInspect

Fetch a docs markdown page by path (e.g. getting-started/installation, livewire, ai).

ParametersJSON Schema
NameRequiredDescriptionDefault
pathYesDocs path without leading docs/, e.g. getting-started/installation or design-tokens
get_llms_indexBInspect

Fetch https://slate.electrik.dev/llms.txt — the curated AI index for Slate.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior2/5

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

With no annotations, the description carries full behavioral transparency burden. Although 'Fetch' implies a read-only GET operation, it does not explicitly state side-effect freedom, potential errors, rate limits, or the nature of the response. The description lacks details about what the tool actually does beyond the URL.

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 a single concise sentence that communicates the essential action and resource. There is no fluff or redundancy, making it highly efficient.

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?

The description is brief and mentions that the resource is a curated AI index for Slate, but it lacks context about the index's purpose, content structure, or expected output. Since there is no output schema, the description should offer more insight into what the tool returns, which it does not. This leaves some gaps in completeness.

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 zero parameters, so the schema fully covers parameter semantics. The description adds no parameter-related information, but none is needed. According to the baseline rule for 0 parameters, the score is 4.

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 it fetches a specific URL and identifies it as a curated AI index for Slate. It distinguishes from sibling tools that focus on components or docs. However, it does not explain what 'Slate' is, leaving some ambiguity about the resource's context.

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

Usage Guidelines2/5

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

The description provides no guidance on when to use this tool versus alternatives. It does not mention scenarios where fetching the index is preferred, nor does it indicate any prerequisites or fallback options. This leaves the agent without clear selection criteria.

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

list_blocksBInspect

List Slate docs-site blocks (copy-ready Blade sections).

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

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 output is 'copy-ready Blade sections' but lacks details about whether it returns a list of block names, full content, or pagination. This is insufficient for a tool with no other behavioral hints.

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 a single, brief sentence that gets straight to the point, with no unnecessary verbiage. It could be slightly more descriptive, but it is appropriately concise for its simplicity.

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 simplicity (no parameters, no output schema), the description is mostly adequate, but the lack of what 'blocks' means or how they are returned (e.g., just names or full code) leaves some ambiguity. It is a minimal viable description, but not fully complete.

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 zero parameters, so there is nothing for the description to explain. The schema is trivial, and the description adds no parameter-related ambiguity, thus a high score is warranted.

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 lists Slate docs-site blocks, and provides a hint of the content ('copy-ready Blade sections'). It is distinct from siblings like list_components, though it doesn't explicitly differentiate itself.

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

Usage Guidelines2/5

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

No guidance on when to use this tool versus siblings. Without context, an agent might confuse it with list_components. There is no mention of exclusions or alternatives, leaving usage ambiguous.

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

list_componentsAInspect

List shipped Electrik Slate Blade components with docs URLs.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior3/5

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

No annotations are provided, so the description carries the burden. It mentions 'with docs URLs' which implies the output includes URLs, but it does not disclose other behaviors like read-only safety, pagination, or whether internal components are excluded. For a simple list tool, this is minimal but adequate.

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?

One sentence, front-loaded verb, zero filler. Perfectly concise and to the point.

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 tool with no parameters and no output schema, the description fully covers its purpose and the key output detail (docs URLs). It is a simple list operation and nothing more is needed.

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?

Tool has zero parameters, and schema coverage is 100% (trivially). The description does not need to explain parameters, and the baseline for 0 params is 4.

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?

Description clearly states verb 'List' and resource 'shipped Electrik Slate Blade components' with an additional detail about docs URLs. This distinguishes it from siblings like get_component_docs and get_component_source, which focus on individual components rather than a list.

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 purpose implies when to use it (to obtain a list of all components), which is clear context. However, it does not explicitly mention when not to use it or suggest alternatives, such as using get_component_docs for detailed documentation of a specific component.

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

Discussions

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

Related MCP Servers

  • A
    license
    A
    quality
    A
    maintenance
    Universal AI Agent OS — governed skills, rules, and commands for AI coding assistants (Claude Code, Augment, Cursor, Copilot, Windsurf). Read-only MCP bridge serves prompts and resources from a release-pinned content bundle.
    6
    20
    2,339
    7
    MIT
  • F
    license
    Not graded
    quality
    B
    maintenance
    Read-only MCP server for the July 2026 survey of AI in open-source design systems, enabling agents to query 19 systems' affordances, coercion techniques, and platform data via 9 tools, 2 resources, and 2 prompts.
    1
  • A
    license
    Not graded
    quality
    A
    maintenance
    A read-only MCP server that provides AI coding agents with a queryable contract for design system tokens, components, patterns, and anti-patterns.
    24
    1
    Apache 2.0

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.