skillsindex-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@skillsindex-mcpSearch for MCP servers for databases"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
skillsindex-mcp
MCP server for SkillsIndex — the scored directory of 11,000+ AI agent tools (MCP servers, Claude skills, GPT actions, IDE plugins).
Give your AI agents the ability to search, score, review, and submit tools from the largest independent AI tool directory.
Tools
Tool | Description |
| Search by keyword, ecosystem, or category — returns ranked results with scores |
| Full details for a tool: security score, GitHub stats, scoring breakdown |
| Top-rated tools, optionally filtered by ecosystem or category |
| Security score (0-5) + audit notes for any indexed tool |
| Submit a new tool for indexing — auto-adds to the review queue |
| Subscribe an email to The Weekly Index (Thursday newsletter) |
Related MCP server: agent101-mcp
Install
npx skillsindex-mcpOr install globally:
npm install -g skillsindex-mcpClaude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"skillsindex": {
"command": "npx",
"args": ["skillsindex-mcp"]
}
}
}Config file locations:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.json
Cursor / Windsurf / Cline
Add to your MCP settings:
{
"skillsindex": {
"command": "npx",
"args": ["skillsindex-mcp"]
}
}Usage Examples
Once connected, you can ask Claude things like:
"Search for MCP servers that connect to databases"
"What's the security score for the filesystem-mcp-server?"
"Show me the top 10 Claude skills"
"Submit this GitHub repo to SkillsIndex: https://github.com/..."
"Subscribe me to the SkillsIndex weekly newsletter"
Tool Details
search_tools
query: Search keyword or use case (required)
ecosystem: mcp_server | claude_skill | gpt_action | openclaw_skill | plugin
category: databases-storage | browser-automation | code-execution | ...
limit: 1-20 (default: 5)get_tool
slug: Tool slug, e.g. "filesystem-mcp-server" (from the URL: skillsindex.dev/tools/[slug]/)get_top_rated
ecosystem: optional filter
category: optional filter
limit: 1-20 (default: 10)check_security
slug: Tool slug (preferred)
name: Tool name (fuzzy match fallback)submit_tool
name: Tool name (required)
github_url: GitHub repo or homepage URL (required)
description: What the tool does (required, min 10 chars)
ecosystem: mcp_server | claude_skill | gpt_action | ... (default: mcp_server)
category: databases-storage | browser-automation | ... (default: other)Submissions land in a review queue. Tools are scored on security, utility, maintenance, and uniqueness before publishing.
subscribe
email: Email address to subscribe (required)Data
11,393+ tools across 5 ecosystems
Scoring: security (30%) + utility (30%) + maintenance (25%) + uniqueness (15%)
Updated weekly via GitHub API
Security scores based on static analysis of source code
Links
Directory: skillsindex.dev
Browse: skillsindex.dev/browse/
Submit a tool: skillsindex.dev/submit/
Scoring methodology: skillsindex.dev/methodology/
Newsletter: The Weekly Index — every Thursday
License
MIT
Available Tools
9 toolscheck_securityA
Get the security score and audit notes for a specific tool. Returns the tool's security score (0-5), risk flags, and audit summary from SkillsIndex's static analysis.
| Name | Required | Description | Default |
|---|---|---|---|
| name | No | Tool name (fuzzy match fallback) | |
| slug | No | Tool slug (preferred) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden, and it delivers useful behavioral context: it states the tool is a read-only query ('Get', 'Returns'), gives the 0-5 score range, lists risk flags, and identifies the source as SkillsIndex static analysis. It does not describe error behavior or dependencies, but the core side-effect-free nature is clear.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences, front-loaded with the primary action, and every clause adds relevant information (score, risk flags, audit summary, source). No filler or redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description adequately covers the tool's return value, but given no annotations and no output schema, a bit more context would help—for example, clarifying that either name or slug must be provided, or noting that this is a read-only lookup. The tool is simple, so this is not severely incomplete, but there are clear gaps.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, with both parameters already fully described in the input schema. The tool description adds no specific parameter-level semantics beyond the schema, so the baseline of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('Get') and resource ('security score and audit notes for a specific tool'), clearly distinguishing this from siblings like get_tool (general tool info) and compare_tools (comparison). It also specifies the exact output scope, removing ambiguity.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage when a user needs a tool's security assessment and audit details, but does not explicitly state when to prefer this over get_tool or search_tools, nor does it provide exclusions or alternatives. The context is clear but not fully spelled out.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
compare_toolsA
Compare 2 to 5 tools side by side by their slugs: overall + security/utility/maintenance scores, GitHub stars, pricing, maintenance status. Use this to help a user choose between alternatives.
| Name | Required | Description | Default |
|---|---|---|---|
| slugs | Yes | Tool slugs to compare (2-5), e.g. ["context7","chrome-devtools-mcp"] |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description must convey behavioral traits. It lists the output fields (scores, stars, pricing, maintenance) but does not mention whether data is fetched live, potential errors, or any side effects. It is a read-only comparison, but that is inferred rather than explicit.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences, front-loaded with the core functionality and immediately followed by the output details. Every word earns its place with no redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given a single parameter and no output schema, the description sufficiently explains what the tool returns (overall scores, GitHub stars, pricing, maintenance status). It omits error handling or invalid-slug behavior, but for a comparison tool of this simplicity, the coverage is solid.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% with an adequate description of the 'slugs' parameter, which already specifies array of strings and example. The tool description reinforces the 2-5 limit but adds no additional semantic detail beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'Compare' and the resource ('2 to 5 tools') with specific criteria (scores, stars, pricing, maintenance). It distinguishes this from sibling tools like get_tool and search_tools by focusing on side-by-side comparison.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The phrase 'Use this to help a user choose between alternatives' gives explicit context for when to invoke the tool. It does not enumerate exclusions, but the 2-5 slug limit implies it is not for single-tool lookup, and sibling names indicate alternatives exist.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_by_platformA
List the top AI agent tools that work on a specific platform (Claude, ChatGPT, Cursor, Windsurf, Cline, VS Code, JetBrains, OpenClaw, opencode, Ollama, LM Studio, local/open-source). Use this when the user runs a specific agent or editor.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Number of results (1-20, default 10) | |
| platform | Yes | The agent platform the tool must support |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must carry the full burden of behavioral disclosure. It only says 'top' without explaining how ranking is determined, and it omits details about return format, pagination, or any access requirements. The description is essentially just a purpose statement with no additional behavioral traits.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is front-loaded with the action and resource, and the second sentence provides clear usage context. The parenthetical platform list is somewhat long but informative. Overall, there is no fluff, but a more compact structure could reduce redundancy with the schema enum.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool is simple with only two parameters, and the description covers the core purpose and usage. However, with no output schema and no annotations, it does not describe the response shape or the meaning of 'top,' leaving an agent to infer those details. It is minimally viable but lacks comprehensive context.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the baseline is 3. The description adds human-readable platform examples (e.g., 'local/open-source') and suggests the filter semantics, but it does not add new technical meaning beyond the schema's enum and limit description.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses the specific verb 'List' and clearly identifies the resource: 'top AI agent tools that work on a specific platform.' It distinguishes itself from siblings by focusing on platform-specific filtering, and the usage phrase 'when the user runs a specific agent or editor' further clarifies its niche.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly states when to use the tool: 'Use this when the user runs a specific agent or editor.' However, it does not discuss when not to use it or name alternatives such as search_tools or get_top_rated, so it stops short of full exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_toolA
Get full details for a specific tool by its slug (e.g. "filesystem-mcp-server"). Includes security score, GitHub stats, install instructions, and scoring breakdown.
| Name | Required | Description | Default |
|---|---|---|---|
| slug | Yes | Tool slug (URL-safe identifier, e.g. "filesystem-mcp-server") |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the burden of behavioral disclosure. It lists what the tool returns (security score, GitHub stats, install instructions, scoring breakdown), which is useful. However, it does not explicitly state that it is a read-only operation or mention any external dependencies or rate limits. The 'Get' verb implies safety, but the lack of explicit disclosure prevents a higher score.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, well-structured sentence that immediately states the tool's purpose, provides an example, and lists the returned content. No wasted words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple tool with one required parameter and no output schema, the description is complete. It explains what the tool does, what the slug is, and what details are included in the response, fully equipping an agent to invoke it correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, as the single parameter 'slug' is fully described in the schema. The description repeats the example but adds no new parameter semantics beyond what the schema already provides, so a baseline score of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states a specific verb ('Get') and resource ('full details for a specific tool by its slug'), with an example. It distinguishes itself from sibling tools like search_tools (searching) and compare_tools (comparing) by focusing on fetching a single tool's comprehensive details.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description conveys a clear usage context: use when you need full details of a specific tool by its slug. It does not explicitly mention alternatives or when-not-to-use, but the context is clear enough to guide selection among siblings.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_top_ratedA
Get the top-rated AI agent tools from SkillsIndex, sorted by overall score (0-100). Optionally filter by ecosystem or category.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Number of results (1-20, default 10) | |
| category | No | Filter by category | |
| ecosystem | No | Filter by ecosystem |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must convey behavioral traits. It discloses the sorting behavior and optional filters, but does not detail return format, pagination, or other limitations. The open-ended nature of 'top-rated' leaves some uncertainty about the output structure, though the schema partially compensates for parameter-related behavior.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is exceptionally concise: two short sentences, front-loaded with the core action and resource. The sorting information and filter options are presented efficiently without any redundant wording.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple read-only listing tool with no output schema, the description covers the essential context: source, sorting, and filters. It does not explicitly state the return shape, but the tool's simplicity and the schema's parameter documentation make this a minor omission, leaving it sufficiently complete for typical use.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema provides comprehensive descriptions for all three parameters, including enums and limits, so the baseline is 3. The description only restates that filtering is optional, adding no new semantic value beyond what the schema already offers.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's function with a specific verb ('Get'), identifies the resource ('top-rated AI agent tools from SkillsIndex'), and specifies the sorting by overall score (0-100). It also mentions optional filters, which further distinguishes it from sibling tools like search_tools or get_tool.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context for when to use this tool: to retrieve top-rated tools sorted by score, with optional ecosystem or category filtering. It does not explicitly mention alternatives or exclusions, but the purpose is unambiguous enough to guide the agent's choice.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_toolsA
Search the SkillsIndex directory for AI agent tools (MCP servers, Claude skills, GPT actions, IDE plugins). Returns ranked results with scores.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Number of results (1-20, default 5) | |
| query | Yes | Search query — tool name, keyword, or use case | |
| category | No | Filter by category | |
| ecosystem | No | Filter by ecosystem |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must carry the burden. It discloses that results are ranked and include scores, which is a behavioral trait. However, it does not mention potential limits, error handling, or authentication requirements. The disclosure is present but minimal.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, well-structured sentence that front-loads the core purpose and includes the return type. No superfluous words or repetition.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool has no output schema, so the description should explain return values more thoroughly. It only mentions 'ranked results with scores' without describing the result object structure or content. However, the tool is relatively simple and the schema covers parameter details, making it moderately complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100% for all four parameters, so the baseline is 3. The description adds no extra parameter-level meaning beyond what the schema already provides. It does not explain how 'query' is matched or how filters interact.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Search the SkillsIndex directory'), the resource ('AI agent tools'), and the output ('ranked results with scores'). This distinguishes it from sibling tools like get_tool (which likely retrieves a single tool) and compare_tools (which likely compares tools).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context for when to use the tool (searching for tools) but does not explicitly mention alternatives or exclusion criteria. Sibling tool names suggest other use cases, but the description itself lacks explicit guidance like 'use get_tool when you know the exact ID'.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
submit_toolA
Submit a new AI agent tool to SkillsIndex for indexing and scoring. The tool will be reviewed for security, utility, maintenance, and uniqueness before being published. Use this when you discover a useful tool that isn't in the directory yet.
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Tool name | |
| category | No | Primary category | other |
| ecosystem | No | Which ecosystem this tool belongs to | mcp_server |
| github_url | Yes | GitHub repository URL or project homepage | |
| description | Yes | Brief description of what this tool does (min 10 chars) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of disclosing behavioral traits. It reveals that submissions undergo review for security, utility, maintenance, and uniqueness before publication, setting expectations that this is not an immediate, guaranteed listing. It doesn't cover response format or failure cases, but the review process disclosure is meaningful context.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences with no filler. The first sentence front-loads the purpose, the second adds usage context. Every word earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a 5-parameter submission tool with no output schema, the description covers purpose, usage trigger, and post-submission review process. It is adequately complete for an agent to decide when and how to invoke it, though it doesn't describe the response shape or potential errors.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema covers all 5 parameters with descriptions and enums (100% coverage), so the description is not required to add parameter-level detail. It doesn't, and baseline 3 is appropriate since schema does the heavy lifting.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly identifies the action ('Submit'), the resource ('a new AI agent tool to SkillsIndex'), and the purpose ('indexing and scoring'). It distinguishes itself from sibling tools like get_tool, search_tools, and compare_tools by being the submission entry point.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides an explicit when-to-use condition: 'Use this when you discover a useful tool that isn't in the directory yet.' While it doesn't name alternative tools for checking existence, the conditional phrasing implies checking the directory first, giving adequate guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
subscribeA
Subscribe a user email to The Weekly Index newsletter from SkillsIndex — weekly digest of new AI agent tools, security alerts, and honest picks.
| Name | Required | Description | Default |
|---|---|---|---|
| Yes | Email address to subscribe |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden. It states the action (subscribe) and the subject (email) but does not disclose side effects such as confirmation emails, idempotency, data handling, or potential errors. However, the core behavior is clear, and the description adds context about the newsletter's content. It's adequate but lacks deeper behavioral detail.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, well-structured sentence that includes the action, target, source, and newsletter content. Every word adds value; there is no fluff or repetition. It is concise yet informative.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple one-parameter subscribe tool, the description covers the essential purpose and gives context about the newsletter. It lacks details about post-subscription behavior (e.g., welcome email, unsubscribe instructions), but these are not critical for invoking the tool. The given schema is sufficient, and the description is adequate for a typical use case.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema covers 100% of the parameter documentation, with the 'email' property described as 'Email address to subscribe.' The description adds no additional semantic value beyond naming the recipient type ('user email'), which is redundant. Baseline 3 is appropriate for full schema coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('Subscribe') and clearly identifies the resource ('a user email to The Weekly Index newsletter from SkillsIndex'). It also differentiates from sibling tools by focusing on newsletter subscription rather than tool search/compare/submit operations.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context about the newsletter's content (weekly digest of AI agent tools, security alerts, and honest picks), making it obvious when subscription is appropriate. It doesn't explicitly state when not to use it, but the purpose is unambiguous. No exclusions are mentioned.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
whats_newA
Get the most recently added AI agent tools on SkillsIndex (newest first). Use this to discover fresh MCP servers, skills, and tools the directory just indexed.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Number of results (1-20, default 10) | |
| ecosystem | No | Filter by ecosystem |
TDQS
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 reveals the ordering ('newest first') but does not disclose any other behavioral traits such as whether pagination is supported (aside from the limit parameter), what fields are returned, or whether results include usage/security details. This is a minimal disclosure for a non-trivial list endpoint.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences, front-loaded with the core action and ordering, then a brief usage example. No redundancy or filler; every word earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool is simple with two optional parameters and no output schema. The description conveys the item type (AI agent tools), the source (SkillsIndex), and the ordering. It lacks a description of the return shape but the overall purpose is complete enough for a basic list endpoint given the schema covers parameter semantics.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema already provides 100% coverage with descriptions for both parameters (limit and ecosystem). The description adds no additional context about how these parameters behave or interact, so it neither enhances nor detracts from the schema. Baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool returns most recently added AI agent tools, sorted newest first. It uses a specific verb ('Get') and resource ('AI agent tools on SkillsIndex'), and distinguishes itself from sibling tools like search_tools and get_top_rated.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly tells the user when to use this tool ('to discover fresh MCP servers, skills, and tools the directory just indexed'). It does not mention when not to use it or explicitly name alternatives, but the use case is clear enough for an agent to make a basic selection decision.
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.
9 tool updates
v0.2.1- First observed
check_security - First observed
compare_tools - First observed
get_by_platform - First observed
get_tool - First observed
get_top_rated - First observed
search_tools - First observed
submit_tool - First observed
subscribe - First observed
whats_new
TDQS
Scored across 9 tools
Most tools have clearly distinct purposes, but check_security largely duplicates the security information already included in get_tool, and get_by_platform overlaps with get_top_rated as both return ranked lists with different filters. This creates minor selection ambiguity.
The majority of tools follow the verb_noun pattern (search_tools, get_tool, submit_tool, compare_tools), but whats_new deviates from this pattern and get_by_platform is a slightly awkward phrase. Overall style is consistent snake_case.
Nine tools appropriately cover a directory service's functionality without bloat. Each tool serves a specific user need from discovery to evaluation to contribution.
The surface covers core directory operations: search, detail, compare, security, top lists, recent additions, submission, and newsletter subscription. No critical gaps exist for the typical user workflow.
Maintenance
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
- SkilderOAuthai.skilder
One place to build, share, and govern the skills and tools your AI agents use at work.
Discover, inspect and run 63,000+ agent tools from one balance. Pay per call, no subscriptions.
Search & install 6,500+ AI agent skills from skills-hub.ai inside any MCP tool.
Directory of APIs, merchants, and tools AI agents can actually use.
Related MCP Servers
- AlicenseAqualityDmaintenanceConnects AI coding agents to the SkillsMP marketplace, allowing users to search, read, and install over 8,000 community-made skills. It enables agents to gain new capabilities either through on-the-spot instruction or permanent installation without requiring an API key.5910MIT
- AlicenseNot gradedqualityNot gradedmaintenanceSearch and discover 500+ tools, APIs, and services for AI agents. Browse 15 categories, get recommendations, and access structured metadata including auth methods, free tiers, and example calls.1-
- FlicenseNot gradedqualityDmaintenanceEnables AI assistants to search, get info, call, and review paid AI skills on Skillz Market, with optional USDC payment on Base network.191-
- AlicenseAqualityCmaintenanceIndexes installed SKILL.md files and provides deterministic search and recommendation tools to help AI agents select relevant skills without executing them.4181MIT