Skip to main content
Glama
jnilrac
by jnilrac

Secant Agent Research MCP

CI secant-agent-research-mcp MCP server secant-agent-research-mcp MCP server

MCP wrapper for the Secant Agent Research Pack, a paid x402 research API for autonomous agents.

The server exposes tools for:

  • search: ranked web search.

  • research_pack: search, selected page extraction, normalized JSON, and citations.

  • extract_page: readable page text and metadata extraction.

  • monitor_diff: page change checks.

Tool Behavior

All tools use the same retry-safe x402 pattern:

  1. Call the tool without payment to receive the upstream payment requirement.

  2. Pay the quoted Base USDC requirement with an x402-compatible client.

  3. Retry with the payment proof and, when available, the same payment_identifier.

The wrapper returns payment_required: true and the upstream 402 body for unpaid calls. It does not execute paid work until the live API accepts the payment proof.

The native paid API uses HTTP 402 and Base USDC over x402. If you call a tool without a payment proof, the tool returns the upstream payment requirement so an agent can pay and retry. If you include a valid payment proof, the tool forwards it to the live API.

Related MCP server: JMT x402 MCP Server

Run

docker build -t secant-agent-research-mcp .
docker run --rm -i secant-agent-research-mcp

Environment

Variable

Default

Description

SECANT_AGENT_RESEARCH_API_BASE_URL

https://agentic.secantoutreach.com

Base URL for the live Secant Agent Research API.

Canonical Discovery

Available Tools

4 tools
extract_pageAInspect

Extract readable content, metadata, links, and hashes from page URLs.

Use this when the caller already knows which pages matter and only needs cleaned extraction output. Blocked or failed pages are returned as extraction errors by the upstream API.

ParametersJSON Schema
NameRequiredDescriptionDefault
urlsYesOne or more absolute page URLs to extract. The live API enforces service limits.
paymentNoOptional x402 payment proof returned by the buyer after accepting the 402 payment requirement.
payment_identifierNoOptional idempotency key/payment identifier used to retry safely without rerunning expensive work.

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4/5.0
Behavior3/5

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

With no annotations, the description carries full burden. It discloses that blocked/failed pages result in extraction errors, but does not mention whether the operation is read-only, side effects, authentication needs, or rate limits. The tool name 'extract' hints at read behavior, but more explicit disclosure is expected.

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?

The description is three sentences, each earning its place: first sentence states action and outputs, second sentence gives usage guidance, third explains error handling. It is front-loaded and efficient with 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?

Given that an output schema exists (as per context signals), the description does not need to detail return values, but it does list outputs (content, metadata, links, hashes). It explains error handling adequately. However, it could elaborate on the payment parameters and prerequisites for success.

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%, so baseline is 3. The description does not add new meaning beyond what the input schema already provides (e.g., URLs with service limits, payment details). The context of extracting content indirectly applies to the 'urls' parameter, but no additional parameter-specific guidance.

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 clearly states the tool extracts 'readable content, metadata, links, and hashes' from page URLs. It distinguishes from siblings by specifying 'when the caller already knows which pages matter', implying it's for targeted extraction rather than search or monitoring.

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?

The description explicitly says to use this tool 'when the caller already knows which pages matter', providing clear context. It also mentions that blocked/failed pages return errors, but does not explicitly state when not to use it or suggest alternatives like search or monitor_diff.

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

monitor_diffAInspect

Check whether a page changed since a previous hash or text snapshot.

Use this for lightweight monitoring of docs, pricing pages, competitor pages, status pages, or other URLs an agent revisits. Unpaid calls return x402 payment terms before execution.

ParametersJSON Schema
NameRequiredDescriptionDefault
urlYesAbsolute page URL to fetch and compare against prior state.
previous_hashNoOptional previous content hash from an earlier extract or diff check.
previous_textNoOptional previous readable text to compare with the current page text.
paymentNoOptional x402 payment proof returned by the buyer after accepting the 402 payment requirement.
payment_identifierNoOptional idempotency key/payment identifier used to retry safely without rerunning expensive work.

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4/5.0
Behavior3/5

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

Discloses that unpaid calls return x402 payment terms, but lacks other behavioral details like read-only nature, caching, or effects of providing hash vs text. No annotations to assist.

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 paragraph of ~60 words, front-loads the main action, and each sentence adds value. No unnecessary repetition or fluff.

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 presence of an output schema and 5 parameters, the description covers purpose, usage, and payment behavior. It could mention behavior when no previous state is given, but overall is fairly complete.

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% so baseline is 3. Description adds minimal extra meaning, only the payment caveat for payment-related params. It does not significantly enhance understanding 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?

The description clearly states the verb 'check' and resource 'whether a page changed', with specific use cases like monitoring docs and pricing pages. It effectively distinguishes from sibling tools which are about extraction, research, and search.

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?

Explicitly says 'Use this for lightweight monitoring...' and notes the payment requirement. Provides clear context but does not explicitly list cases to avoid or compare with siblings.

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

research_packAInspect

Run the full paid research workflow: search, extraction, JSON, and citations.

Use this when an agent needs a compact source-backed research packet rather than raw search results. Unpaid calls return x402 payment terms; paid retries return normalized results and extraction details.

ParametersJSON Schema
NameRequiredDescriptionDefault
queryYesResearch question or search query for the workflow.
max_resultsNoMaximum number of ranked search results to include.
extract_pagesNoNumber of top-ranked result pages to extract for readable text and citations.
paymentNoOptional x402 payment proof returned by the buyer after accepting the 402 payment requirement.
payment_identifierNoOptional idempotency key/payment identifier used to retry safely without rerunning expensive work.

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4.4/5.0
Behavior4/5

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 reveals the paid nature, the x402 payment requirement, and the retry behavior with normalized results. However, it does not mention error handling or what happens after payment failure, which would be helpful.

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?

The description is concise with three sentences, each contributing distinct value: purpose, usage guidance, and payment behavior. It is front-loaded and contains no redundant information.

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 complexity (5 parameters, payment workflow) and the existence of an output schema, the description covers the main workflow and payment mechanism adequately. It could elaborate on parameter interactions (e.g., how max_results and extract_pages relate) but is sufficient for an agent to understand the tool's role.

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%, so parameters are already well-described. The description adds overall context about the workflow (search, extraction, JSON, citations) but does not provide additional details for individual parameters beyond what the schema offers. 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 clearly states the tool runs a full paid research workflow combining search, extraction, JSON, and citations. It distinguishes itself from raw search results and sibling tools like extract_page and search by emphasizing it produces a compact source-backed packet.

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 advises using this tool when an agent needs a compact research packet rather than raw search results. It also clarifies payment behavior: unpaid calls return x402 terms, paid retries return normalized results. This provides clear context and differentiation.

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

TDQS

A4.1/5.0
Disambiguation4/5

The tools are distinct in purpose: search for web searching, extract_page for content from known URLs, monitor_diff for change detection, and research_pack as a higher-level combined workflow. While research_pack encompasses search and extraction, it is presented as a different service level, so confusion is minimal.

Naming Consistency4/5

Three tools follow a verb_noun pattern (extract_page, monitor_diff, research_pack), with 'research_pack' being noun_noun but still clear. 'search' is a single verb, slightly deviating but acceptable. Overall pattern is recognizable and consistent.

Tool Count5/5

Four tools is an appropriate number for a research-focused server, covering key operations (search, extraction, monitoring, and a bundled paid workflow) without being overbearing or insufficient.

Completeness4/5

Core research workflows (search, extract, monitor, full research pack) are covered. Minor gaps exist, such as lacking a tool to list or retrieve previous research packs, but the set is functional for autonomous agents.

Maintenance

ActivityInactive
ResponsivenessSyncing

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
    Not graded
    quality
    D
    maintenance
    Pay-per-call web search for AI agents, settled in USDC on Base via the x402 protocol. No API key or subscription required; users fund a wallet and get a web_search tool.
    14
    1
    MIT
  • A
    license
    B
    quality
    C
    maintenance
    Exposes 25 paid API endpoints as MCP tools for AI agents, with payments in USDC on Base mainnet via the x402 protocol, enabling tasks like web search, company intelligence, and crypto research.
    25
    78
    MIT
  • A
    license
    Not graded
    quality
    D
    maintenance
    MCP server providing 11 pay-per-call web intelligence tools (page reading, PDF extraction, RSS parsing, screenshots, summarization, structured data extraction) for AI agents, paid automatically in USDC via the x402 protocol on Base mainnet with no API keys required.
    49
    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/jnilrac/secant-agent-research-mcp'

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