Skip to main content
Glama

BytesAgain MCP Server

bytesagain/mcp-server MCP server

Search 60,000+ AI agent skills directly from any MCP-compatible agent.

Overview

BytesAgain is a free MCP server for discovering AI agent skills and workflow use cases across ClawHub, LobeHub, Dify, GitHub-indexed skills, and the BytesAgain curated catalog.

This repository contains a real stdio MCP server wrapper. It exposes compact tools to agents and forwards read-only requests to the public BytesAgain API at https://bytesagain.com/api/mcp.

Related MCP server: AgentBase MCP Server

MCP Tools

Tool

When to use

Returns

search_skills

Find AI skills for a concrete task, keyword, domain, or integration request. Supports English, Chinese, Japanese, Korean, German, French, Spanish, and Portuguese.

Ranked skill summaries with slug, name, description, category, tags, downloads, owner, and relevance fields.

get_skill

Fetch full details for a specific slug returned by search_skills or popular_skills.

Detailed skill metadata, install/source links, category, tags, owner, downloads, stars, and related fields when available.

popular_skills

Browse trending or high-download skills when the user has no specific task in mind.

Top skills ranked by downloads.

search_use_cases

Search workflow/use-case pages such as “write weekly reports”, “build dashboards”, or “automate ecommerce listings”.

Use-case pages and descriptions that map real-world tasks to relevant skills.

Install

Run with npx

npx -y --package github:bytesagain/mcp-server bytesagain-mcp

Run from source

git clone https://github.com/bytesagain/mcp-server.git
cd mcp-server
npm install
npm start

Docker

docker build -t bytesagain-mcp .
docker run --rm -i bytesagain-mcp

Claude Desktop configuration

{
  "mcpServers": {
    "bytesagain": {
      "command": "npx",
      "args": ["-y", "--package", "github:bytesagain/mcp-server", "bytesagain-mcp"]
    }
  }
}

Environment variables

Variable

Default

Description

BYTESAGAIN_API_BASE

https://bytesagain.com/api/mcp

Optional override for the public BytesAgain API endpoint.

No API key is required. The server is read-only and does not write to BytesAgain, GitHub, Glama, or third-party services.

Public endpoints

Development

npm install
npm test

The smoke test starts the MCP server over stdio and verifies that the tool list is exposed correctly.

License

MIT

Available Tools

4 tools
get_skillA

Fetch detailed metadata for one AI skill by exact slug. Use only after search_skills or popular_skills returns a slug, or when the user provides a known slug. Do not guess slugs. Returns the skill name, description, category, tags, version, owner/author, downloads, stars, install command, source URLs, and related metadata when available. If the slug is not found, search again with related keywords instead of inventing details.

ParametersJSON Schema
NameRequiredDescriptionDefault
slugYesExact lowercase hyphen-separated slug from a previous result, e.g. "clawhub-github" or "bytesagain-video-editor".

TDQS

A4.5/5.0
Behavior4/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 implies a read-only operation by stating it 'fetches' data and returns metadata, without mentioning side effects. It could explicitly confirm non-destructiveness, but the behavior is clear enough.

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 well-structured and front-loaded. It is concise but includes essential usage guidance and outcomes. Every sentence contributes meaning, though a slight reduction in length is possible without losing clarity.

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 simplicity (one parameter, no output schema), the description is comprehensive. It lists the returned fields and provides troubleshooting advice. It adequately covers the tool's context and user expectations.

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 input schema already covers the slug parameter with an example, giving a baseline of 3. The description adds value by specifying the slug must be an 'exact lowercase hyphen-separated slug from a previous result', reinforcing correct usage and validation constraints.

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 'Fetch detailed metadata for one AI skill by exact slug', clearly identifying the resource and scope. It distinguishes itself from sibling tools like search_skills and popular_skills by focusing on a single skill retrieval via slug.

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?

The description explicitly states when to use this tool ('after search_skills or popular_skills returns a slug, or when the user provides a known slug'), what not to do ('Do not guess slugs'), and provides fallback guidance ('If the slug is not found, search again with related keywords').

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

search_skillsA

Search the BytesAgain index of 60,000+ AI agent skills by keyword or natural-language task. Use this when a user asks for tools, agents, skills, automations, integrations, or capabilities for a specific job. Supports English, Chinese, Japanese, Korean, German, French, Spanish, and Portuguese queries. Results are ranked by relevance and popularity and include slug, name, description, category, tags, downloads, owner, and score fields when available. After the user chooses a result, call get_skill with the exact slug for full details.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoNumber of results to return. Default 10, maximum 50.
queryYesSearch phrase or task description, e.g. "video editing", "email automation", "数据分析", or "generate product listings".

TDQS

A4.7/5.0
Behavior4/5

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

Describes ranking, included fields, and language support. Does not explicitly state it's read-only but infers from context. Lacking annotation coverage, description carries full burden and does well but misses explicit non-mutation statement.

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?

Concise 4-sentence description front-loaded with purpose. Every sentence adds distinct value without redundancy.

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?

Fully explains result fields and next step. No output schema, but description sufficiently covers what to expect. Sibling tools are indirectly addressed via linkage to get_skill.

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 baseline 3. Description adds query examples and limit defaults/maximum, enhancing usability beyond 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?

Clearly states the verb 'Search', the specific resource 'BytesAgain index of 60,000+ AI agent skills', and distinguishes from sibling tools like get_skill (detail retrieval) and popular_skills (ranking list).

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?

Explicit instructs to use when user asks for tools, agents, etc. for a specific job. Provides supported languages and a clear post-search action (call get_skill with slug).

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

search_use_casesA

Search BytesAgain use-case pages by a real-world goal or workflow. Use this when the user describes an outcome such as "write a weekly report", "automate social media", "build BI dashboards", or asks how AI agents can help with a domain. Each result links to a use-case page with relevant skills. Combine this with search_skills when the user wants both workflow guidance and concrete tools.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoNumber of use cases to return. Default 10, maximum 30.
queryYesNatural-language workflow, task, or business goal, e.g. "analyze sales data" or "write job descriptions".

TDQS

A4/5.0
Behavior3/5

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

No annotations are provided, so description carries full burden. It explains results link to use-case pages with relevant skills, but lacks details on pagination, sorting, or potential side effects (though none expected for a search tool).

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 purpose, examples, and combination guidance. 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 2-param search tool with no output schema, description adequately covers input, output linkage, and usage context. Could mention result count or format, but sufficient.

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% with descriptions for both parameters. Description adds example queries for query param but adds no extra meaning beyond schema for limit. 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 tool searches use-case pages by real-world goal or workflow, gives concrete examples, and distinguishes from search_skills by mentioning combination for both workflow guidance and tools.

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?

Provides clear when-to-use with examples and suggests combining with search_skills for broader needs, but does not explicitly exclude cases where other siblings like get_skill are more appropriate.

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.1.0
    • First observedget_skill
    • First observedpopular_skills
    • First observedsearch_skills
    • First observedsearch_use_cases

TDQS

A4.4/5.0
Disambiguation5/5

Each tool serves a clearly distinct purpose: get_skill for fetching details by slug, popular_skills for browsing top skills, search_skills for keyword-based skill discovery, and search_use_cases for finding workflow-driven content. No overlap exists.

Naming Consistency5/5

All tool names follow the verb_noun pattern using underscores (get_skill, popular_skills, search_skills, search_use_cases). While 'popular_skills' uses an adjective rather than a verb, it is consistent in style and easily understood.

Tool Count5/5

With only 4 tools, the surface is lean yet sufficient for the domain of searching and retrieving AI skills and use-cases. Each tool contributes a necessary function without redundancy.

Completeness4/5

Core operations are covered: searching skills, getting skill details, listing popular skills, and searching use-cases. However, there is no tool to retrieve full details for a specific use-case, which is a minor gap given that get_skill only covers skills.

Maintenance

ActivityInactive
ResponsivenessNo issues

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
    A
    quality
    F
    maintenance
    MCP server for discovering and installing AI agent skills from agentskill.sh. Search skills across platforms, browse trending skills, and install them with built-in security scanning.
    4
    13
    3
    MIT
  • A
    license
    A
    quality
    D
    maintenance
    Open registry of agent instruction files — system prompts, skills, workflows, and domain packs. Exposes the OpenClaw registry via 4 MCP tools: search by keyword/category, fetch full instruction files, list categories, and get top-rated files. CC0 licensed, free to use.
    4
    63
    1
    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
  • A
    license
    A
    quality
    C
    maintenance
    Enables AI agents to search a directory of 13,870+ MCP servers, 4,384+ agent skills, and plugins from Remote OpenClaw, returning install commands directly.
    3
    64
    3
    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/bytesagain/mcp-server'

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