Labsco
sloikodavid logo

BytesAgain

from sloikodavid

Search AI agent skills and MCP servers via MCP or REST API. Free, no auth required. Supports 7 languages.

๐Ÿ”ฅ๐Ÿ”ฅFreeQuick setup

agently-mcp: Model Context Protocol Server for Agently Agents

agently-mcp is a lightweight MCP server implementation that enables A2A AI agents to discover and fetch other A2A agents on the Agently platform.

This essentially allows for an infinite amount of combinations: just imagine ANY data, sent in ANY modality to ANY agent, that will then call ANY number of other agents, for them to then cooperate and complete ANY sort of task - then you'll see that this is the ultimate future we are all heading towards, and that this is now becoming the present.

Key Features

  • ๐Ÿ” Agent Discovery: Query and retrieve public Agently agents with flexible filtering, sorting, and pagination.
  • โš™๏ธ Single MCP Tool: Exposes a single fetch_agents tool to perform all discovery operations.
  • ๐Ÿ“Š Customizable Queries: Filter by categories, input/output modes, skill tags, and sort by name, creation date, update date, success rate, or usage.
  • ๐Ÿงฉ Easy Integration: Seamlessly connect with MCP-compatible clients like Cursor or Claude Desktop.

fetch_agents Tool Reference

Description

Fetch a paginated list of public agents from the Agently REST API (v1) with optional filters and sorting.

Request Parameters

All parameters are passed as properties in the arguments object:

ParameterTypeDefaultNotes
pagenumber1Page number (min: 1)
limitnumber10Items per page (1โ€“50)
searchTermstringโ€”Text search on agent names/descriptions (max 250 chars)
categoriesstring[]โ€”Filter by categories (AND logic, max 20 items)
inputModesstring[]โ€”Filter by input MIME types (AND logic, max 20 items)
outputModesstring[]โ€”Filter by output MIME types (AND logic, max 20 items)
skillTagsstring[]โ€”Filter by skill tags (AND logic, max 20 items)
sortByName'a-z' 'z-a'โ€”Sort alphabetically
sortByCreatedAt'newest' 'oldest'โ€”Sort by creation date
sortByUpdatedAt'newest' 'oldest'โ€”Sort by last update
sortBySuccessRate'highest' 'lowest'โ€”Sort by agent success rate
sortByUsage'highest' 'lowest'โ€”Sort by usage count
sortByViews'highest' 'lowest'โ€”Sort by views
isLocalbooleanfalseWhen true, returns Local agents instead of Deployed
explanationstringโ€”Optional note passed to the API (for logging/tracing)

Response

Returns a CallToolResult containing:

  • A JSON-stringified array of found_agents matching the query.
  • The pagination details from the Agently API response.

Debugging

Use the MCP Inspector to visualize and debug the MCP communication:

npx @modelcontextprotocol/inspector

This launches a local web UI for monitoring requests and responses over stdio.


For more details on the Agently Public API and MCP specification, refer to the respective documentation.