home / skills / openclaw / skills / agnxi-search-skill

agnxi-search-skill skill

/skills/doanbactam/agnxi-search-skill

This skill enables agents to search the Agnxi database for tools, MCP servers, and documentation to accelerate discovery.

npx playbooks add skill openclaw/skills --skill agnxi-search-skill

Review the files below or copy the command above to add this skill to your agents.

Files (4)
SKILL.md
1.6 KB
---
name: agnxi-search
description: The official search utility for Agnxi.com - The premier directory of AI Agent Tools, MCP Servers, and Skills.
author: Agnxi
version: 1.1.0
tags: [search, tools, mcp, skills, directory, discovery]
---

# Agnxi Search Skill

This skill provides direct access to the [Agnxi.com](https://agnxi.com) database, allowing agents to autonomously discover and retrieve information about thousands of curated tools, MCP servers, and coding capabilities.

## Capabilities

- **Skill Discovery**: Find specific agent skills (e.g., "browser automation", "pdf parsing").
- **MCP Server Lookup**: Locate Model Context Protocol servers to extend agent capabilities.
- **Tool Retrieval**: Direct links to tool documentation and repositories.

## Tools

### `search_agnxi`

Performs a keyword search against the Agnxi sitemap index to find relevant resources.

**Parameters:**

- `query` (string, required): The search keywords (e.g., "browser use", "postgres mcp", "text to speech").

**Usage Implementation:**

> **Note**: This tool runs a local Python script to query the live sitemap, ensuring up-to-date results without API keys.

```bash
python3 search.py "{{query}}"
```

## Best Practices for Agents

1.  **Search Broadly**: If specific terms yield no results, try broader categories (e.g., instead of "PyPDF2", search "PDF").
2.  **Verify Links**: The tool returns direct URLs. Always verify the content matches the user's need.
3.  **Cross-Reference**: Use this skill to find the *name* of a tool, then use your `browser` or `github` skills to fetch specific documentation if needed.

Overview

This skill provides direct search access to the Agnxi.com directory, enabling agents to discover curated AI agent tools, MCP servers, and skills. It returns up-to-date sitemap results and direct links so agents can quickly locate tool pages, documentation, and repositories. The skill is implemented as a lightweight Python search utility that queries the live sitemap without requiring API keys.

How this skill works

The skill runs a local Python script that queries Agnxi.com's sitemap index for matching entries based on the provided keywords. Results are parsed into relevant resource records with titles, short descriptions when available, and direct URLs. Agents can call the search tool with a single query string and receive immediate links to tools, MCP servers, and skills for further retrieval.

When to use it

  • Find agent skills or capabilities by keyword when assembling an agent or pipeline.
  • Locate Model Context Protocol (MCP) servers to extend an agent's runtime environment.
  • Discover tool documentation or repository links before integrating a new tool.
  • Quickly identify alternative tools when a specific library or skill is unavailable.
  • Perform reconnaissance on available skills to inform design or procurement decisions.

Best practices

  • Search broadly first; use broader category terms if specific package names return no hits.
  • Verify returned URLs manually or with a browser skill to ensure content matches requirements.
  • Combine results with other tools (browser, github) to fetch full documentation and usage examples.
  • Use simple, focused queries to reduce noisy results; then expand terms if needed.
  • Treat results as discovery pointers, not complete validation—check licensing and compatibility before integration.

Example use cases

  • Agent needs a PDF parsing skill: search for 'pdf parsing' to find candidate tools and repos.
  • Developer building an agent pipeline searches for 'postgres mcp' to find MCP servers supporting Postgres context.
  • Product manager compares multiple text-to-speech tools by searching 'text to speech' and following links to documentation.
  • Security auditor enumerates archived skills to check for deprecated or vulnerable packages.
  • Researcher collects a list of browser automation skills by searching 'browser automation' for benchmarking.

FAQ

Do I need an API key to use the search?

No. The tool queries the live sitemap via a local Python script and does not require API keys.

How current are the search results?

Results reflect the live Agnxi sitemap at query time, so they are as up-to-date as the site's sitemap index.