# AgentPMT Platform Search

## Links

- Product page URL: https://www.agentpmt.com/marketplace/agentpmt-docs-and-content
- Product markdown URL: https://www.agentpmt.com/marketplace/agentpmt-docs-and-content?format=agent-md
- Product JSON URL: https://www.agentpmt.com/marketplace/agentpmt-docs-and-content?format=agent-json

## Overview

- Product ID: 6a00e534b306ecca4ad7f454
- Type: core utility
- Unit type: request
- Price: 0 credits
- Categories: Developer Tools, Vector Search & Embeddings, Data Processing, Text Extraction & Parsing, Content Management & Publishing, Academic & Scientific Research
- Generated at: 2026-08-01T04:46:40.869Z

### Page Description

Find anything on AgentPMT and answer questions with official sources. This tool lets your AI agents search the whole AgentPMT site at once -- marketplace tools, workflows, and prebuilt agents along with documentation, help articles, research papers, videos, and FAQs -- and bring back the most relevant results with links to the real pages. Use it to answer "is there a tool for this?", route people to the right documentation, surface the newest content, and ground agent responses in genuine AgentPMT resources instead of guessing or scraping the open web.

### Agent Description

Use this internal AgentPMT search tool when an agent needs official AgentPMT results from the website, marketplace, documentation, articles, videos, papers, pages, workflows, agents, tools, or FAQs. Use `global_search` for broad site-wide discovery across product/tools, workflows, agents, articles, papers, videos, docs, pages, and FAQs. Use `search` only when the user specifically needs public knowledge content from articles, papers, videos, docs, or standalone FAQs. Use `recent` when the user asks for newest AgentPMT content rather than relevance-ranked results.

## Details

### Details

Find anything on AgentPMT and answer questions with official sources. This tool lets your AI agents search the whole AgentPMT site at once -- marketplace tools, workflows, and prebuilt agents along with documentation, help articles, research papers, videos, and FAQs -- and bring back the most relevant results with links to the real pages. Use it to answer "is there a tool for this?", route people to the right documentation, surface the newest content, and ground agent responses in genuine AgentPMT resources instead of guessing or scraping the open web.

### Actions

- `search`: Search public articles, papers, videos, docs, FAQs, or all content.
- `global_search`: Search the public AgentPMT site across tools, workflows, agents, articles, papers, videos, docs, pages, and FAQs.
- `recent`: Return the most recently published public content for selected types.

### Use Cases

Search the AgentPMT website for anything relevant to a user question, Find AgentPMT tools/products by capability or name, Discover public AgentPMT workflows, Discover public AgentPMT agents, Find official AgentPMT documentation pages, Search AgentPMT articles papers videos docs pages and FAQs in one request, Search only knowledge content when a response should cite docs articles papers videos or FAQs, Retrieve canonical public AgentPMT URLs for citations, Route users to relevant marketplace tools workflows agents or docs, Answer user questions using official AgentPMT content instead of scraping pages, List recent AgentPMT public content by type, Build agent responses that cite official AgentPMT resources, Search the site without exposing vendor names or vendor identifiers in agent-facing results

### Workflows Using This Tool

No public workflows currently reference this product.

### Related Content

No related content is currently linked to this product.

## Documentation

No platform documentation is currently linked to this product.

## Integration Details

### DynamicMCP

- Setup page URL: https://www.agentpmt.com/dynamic-mcp
- Claude setup guide: https://www.agentpmt.com/dynamic-mcp#platform=claude
- ChatGPT setup guide: https://www.agentpmt.com/dynamic-mcp#platform=chatgpt
- Cursor setup guide: https://www.agentpmt.com/dynamic-mcp#platform=cursor
- Windsurf setup guide: https://www.agentpmt.com/dynamic-mcp#platform=windsurf

Use the local router for command-based MCP clients. It forwards requests to `https://api.agentpmt.com/mcp` and does not execute tools locally.

```bash
npm install -g @agentpmt/mcp-router
agentpmt-setup
```

### REST API

The live page renders cURL, Python, JavaScript, and Node.js examples. Logged-in users see those examples prefilled with their own API and budget credentials.

- Purchase endpoint: https://api.agentpmt.com/products/purchase
- Authorization format: `Bearer <base64(apiKey:budgetKey)>`

```bash
curl -X POST "https://api.agentpmt.com/products/purchase" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer eW91ci1hcGkta2V5LWhlcmU6eW91ci1idWRnZXQta2V5LWhlcmU=" \
  -d '{
    "product_id": "6a00e534b306ecca4ad7f454",
    "parameters": {
      "action": "search",
      "query": "example_query",
      "limit": 10
    }
  }'
```

### Autonomous Agents

Autonomous agents can access this tool through AgentAddress credit balances or direct x402 payments. Use the Autonomous Agent API reference for endpoint shapes after choosing the access pattern below.

- Autonomous Agent API reference URL: https://www.agentpmt.com/docs/api-reference/autonomous-agents
- Autonomous Agent API reference markdown URL: https://www.agentpmt.com/docs/api-reference/autonomous-agents?format=agent-md
- Credit-Based Access Using AgentAddress: https://www.agentpmt.com/docs/autonomous-agents/credit-based-tool-usage-with-agentaddress
- AgentAddress is preferred for persistent file access, stored platform state, and maximum tool use ability across repeated calls.
- Direct x402 is for independent one-off tool calls that do not require shared files or stored platform state.
- Direct x402 public payments: USDC on Base, Arbitrum, Optimism, Polygon, and Avalanche.

#### Product Skill Package

This product has a published Agent Skill package for product-specific operating instructions.

- Skill slug: agentpmt-docs-and-content
- Version: 1.0.0
- Download SKILL.md: https://raw.githubusercontent.com/AgentPMT/agent-skills/main/skills/agentpmt-docs-and-content/SKILL.md
- Package source: https://github.com/AgentPMT/agent-skills/tree/main/skills/agentpmt-docs-and-content
- OpenClaw listing: https://clawhub.ai/agentpmt/agentpmt-docs-and-content
- OpenClaw install: `openclaw skills install agentpmt-docs-and-content`
- skills.sh install: `npx skills add AgentPMT/agent-skills --skill agentpmt-docs-and-content`
- Last published: 2026-07-31T22:37:05.250Z

### Schema

#### Parameters

- Schema type: actions

```json
{
  "actions": {
    "search": {
      "description": "Search public articles, papers, videos, docs, FAQs, or all content.",
      "properties": {
        "query": {
          "type": "string",
          "description": "Search query. Required when action='search' or action='global_search'.",
          "required": true
        },
        "content_types": {
          "type": "array",
          "description": "Content types to include. Omit for all content. Supported values: article, paper, video, doc, faq.",
          "required": false,
          "items": {
            "type": "string",
            "description": "",
            "enum": [
              "article",
              "paper",
              "video",
              "doc",
              "faq"
            ]
          }
        },
        "limit": {
          "type": "integer",
          "description": "Maximum items to return (1-50).",
          "required": false,
          "default": 10,
          "minimum": 1,
          "maximum": 50
        },
        "cursor": {
          "type": "string",
          "description": "Opaque continuation cursor returned by a previous search or global_search call. Reuse it with the same query and type filters.",
          "required": false
        }
      }
    },
    "global_search": {
      "description": "Search the public AgentPMT site across tools, workflows, agents, articles, papers, videos, docs, pages, and FAQs.",
      "properties": {
        "query": {
          "type": "string",
          "description": "Search query. Required when action='search' or action='global_search'.",
          "required": true
        },
        "types": {
          "type": "array",
          "description": "Global search result kinds to include. Omit for all result kinds. Supported values: product, workflow, agent, article, paper, video, doc, page, faq. Used only when action='global_search'.",
          "required": false,
          "items": {
            "type": "string",
            "description": "",
            "enum": [
              "product",
              "workflow",
              "agent",
              "article",
              "paper",
              "video",
              "doc",
              "page",
              "faq"
            ]
          }
        },
        "limit": {
          "type": "integer",
          "description": "Maximum items to return (1-50).",
          "required": false,
          "default": 10,
          "minimum": 1,
          "maximum": 50
        },
        "cursor": {
          "type": "string",
          "description": "Opaque continuation cursor returned by a previous search or global_search call. Reuse it with the same query and type filters.",
          "required": false
        }
      }
    },
    "recent": {
      "description": "Return the most recently published public content for selected types.",
      "properties": {
        "content_types": {
          "type": "array",
          "description": "Content types to include. Omit for all content. Supported values: article, paper, video, doc, faq.",
          "required": false,
          "items": {
            "type": "string",
            "description": "",
            "enum": [
              "article",
              "paper",
              "video",
              "doc",
              "faq"
            ]
          }
        },
        "limit": {
          "type": "integer",
          "description": "Maximum items to return (1-50).",
          "required": false,
          "default": 10,
          "minimum": 1,
          "maximum": 50
        },
        "skip": {
          "type": "integer",
          "description": "Number of recent items to skip for pagination. Used only when action='recent'.",
          "required": false,
          "minimum": 0,
          "maximum": 1000
        }
      }
    },
    "get_instructions": {
      "description": "Return usage instructions for this content search handler."
    }
  }
}
```

### Usage Instructions

Choose the action based on scope.

Use `global_search` when the user asks to search AgentPMT broadly or find anything on the website, including tools/products, workflows, agents, docs, articles, papers, videos, pages, or FAQs. Provide `query` and optionally `types` and `limit`. Supported `types` values are `product`, `workflow`, `agent`, `article`, `paper`, `video`, `doc`, `page`, and `faq`. Omit `types` to search all supported result kinds. Set `limit` from 1 to 50; default is 10.

Use `search` when the user specifically wants AgentPMT public knowledge content only. Provide `query` and optionally `content_types` and `limit`. Supported `content_types` values are `article`, `paper`, `video`, `doc`, and `faq`. This action intentionally does not return tools, workflows, agents, or static pages.

Use `recent` when the user asks for the newest AgentPMT public content instead of relevance-ranked search. Optionally pass `content_types`, `limit`, and `skip`. `skip` is only for recent-content pagination and is ignored by search actions.

Use `get_instructions` to retrieve handler guidance.

Result modes are explicit: `global_search` returns `mode: "global_search"`, `search` returns `mode: "search"`, and `recent` returns `mode: "recent"`. `global_search` items include only the sanitized agent-facing fields `id`, `kind`, `title`, `summary`, `url`, `thumbnail`, `score`, `match_type`, `source`, and `visibility` when those values are available, plus response-level `facets`, `cursor`, `degraded_sources`, `query`, `types`, and counts. The global output must not include vendor names, vendor identifiers, vendor fields, or frontend badges.

`search` and `recent` return content-focused items with canonical public URLs where available. FAQ results are limited to standalone public FAQs and exclude product-linked or workflow-linked FAQ records.

This tool searches AgentPMT's own public site and catalog surfaces only. It is not a general web search engine and should not be used for arbitrary internet research.

### Additional Product Content

## AgentPMT Docs and Content Search

A single search across everything AgentPMT publishes. This tool lets your AI agents look up official AgentPMT resources -- marketplace tools, workflows, and prebuilt agents together with documentation, help articles, research papers, videos, and FAQs -- and answer questions with links to the real pages instead of guessing or scraping the open web.

### What you can find

1.  **Marketplace** -- tools, workflows, and prebuilt agents, by name or by what they do.
2.  **Knowledge** -- documentation, help articles, research papers, and videos.
3.  **Answers** -- frequently asked questions and official guidance.

### Why it matters

1.  **Grounded answers.** Responses cite genuine AgentPMT pages, so users get accurate information with links they can follow.
2.  **Faster discovery.** Ask "is there a tool for this?" and get pointed straight to the right tool, workflow, or doc.
3.  **Always current.** Surface the newest published content when recency matters more than relevance.

### Common uses

Help users find the right marketplace tool or workflow, route questions to the correct documentation, build agent responses that cite official AgentPMT sources, and keep answers accurate without sending agents off to search the wider internet.

### Frequently Asked Questions

#### How do I connect this tool to an external agent?

- Page URL: https://www.agentpmt.com/faq
- Markdown URL: https://www.agentpmt.com/faq?format=agent-md

You can install the local MCP server by opening a terminal and running:

```
npm install -g @agentpmt/mcp-router
agentpmt-setup
```

This will connect you to local agents like Claude Code, Windsurf, Grok Build, Cursor, etc.

Alternatively you can connect to the hosted version with this config block, no installation required:

```
{
  "mcpServers": {
    "agentpmt": {
      "type": "streamable-http",
      "url": "https://api.agentpmt.com/mcp",
      "headers": {
        "Authorization": "Bearer <AGENTPMT_BEARER_TOKEN>",
        "x-instance-metadata": "{\"client\":\"generic-mcp\",\"platform\":\"remote\"}"
      }
    }
  }
}
```

[View MCP Connection Instructions](/docs/mcp-reference/connection) for more details.

#### How does an external agent use this tool?

- Page URL: https://www.agentpmt.com/faq
- Markdown URL: https://www.agentpmt.com/faq?format=agent-md

After the external agent is connected to an Agent Group that can use this tool, paste this prompt into the agent:

> Use the AgentPMT-Tool-Search-and-Execution tool. First call action 'get\_instructions' so you know how to use the tool search interface. Then call action 'get\_schema' with tool\_id 6a00e534b306ecca4ad7f454 ("AgentPMT Platform Search"). After reading the schema and any returned instructions, tell me what this tool can do, we are going to be using it

The agent should fetch the tool schema first, collect the required parameters for your request, and then call the tool through AgentPMT.

#### Can it help users find the right tool or workflow?

- Page URL: https://www.agentpmt.com/faq#faq-6a3c9a6a3a3b8759414cd9ed
- Markdown URL: https://www.agentpmt.com/faq?format=agent-md#faq-6a3c9a6a3a3b8759414cd9ed
- Tags: Product Specific

Yes. Search by name or by capability (for example, "send text messages" or "make phone calls") and get pointed to the matching tool, workflow, or agent.

#### Can it show the newest content?

- Page URL: https://www.agentpmt.com/faq#faq-6a3c9a6a3a3b8759414cd9ef
- Markdown URL: https://www.agentpmt.com/faq?format=agent-md#faq-6a3c9a6a3a3b8759414cd9ef
- Tags: Product Specific

Yes. When recency matters more than relevance, it can list the most recently published AgentPMT content by type.

#### Does it provide links so agents can cite their sources?

- Page URL: https://www.agentpmt.com/faq#faq-6a3c9a6a3a3b8759414cd9ee
- Markdown URL: https://www.agentpmt.com/faq?format=agent-md#faq-6a3c9a6a3a3b8759414cd9ee
- Tags: Product Specific

Yes. Results come back with links to the real AgentPMT pages, so agent responses can cite official documentation and content instead of guessing.

#### Does it search the whole internet?

- Page URL: https://www.agentpmt.com/faq#faq-6a3c9a6a3a3b8759414cd9ec
- Markdown URL: https://www.agentpmt.com/faq?format=agent-md#faq-6a3c9a6a3a3b8759414cd9ec
- Tags: Product Specific

No. It searches only AgentPMT's own public site and catalog, so answers stay grounded in official AgentPMT resources rather than arbitrary web pages.

#### What can I search with this tool?

- Page URL: https://www.agentpmt.com/faq#faq-6a3c9a6a3a3b8759414cd9eb
- Markdown URL: https://www.agentpmt.com/faq?format=agent-md#faq-6a3c9a6a3a3b8759414cd9eb
- Tags: Product Specific

Everything AgentPMT publishes: marketplace tools, workflows, and prebuilt agents, plus documentation, help articles, research papers, videos, and FAQs -- all in one search.

#### What counts as knowledge content?

- Page URL: https://www.agentpmt.com/faq#faq-6a3c9a6a3a3b8759414cd9f0
- Markdown URL: https://www.agentpmt.com/faq?format=agent-md#faq-6a3c9a6a3a3b8759414cd9f0
- Tags: Product Specific

Documentation, help articles, research papers, videos, and standalone FAQs -- the official material that explains how AgentPMT works and how to get the most from it.

### Dependencies

This product has no public dependency products.