test-api

test-api is a command for Claude Code from SAGAAIDEV/mcp-ahrefs. It costs 7 tokens per session (542 once invoked), scanned A, original, MIT.

A command for testing Python backend API endpoints with pytest, a Python testing tool. It examines the API structure and existing tests before running focused checks.

In plain words
What is it for?
Use it to test new or changed Python API endpoints with unit or integration tests.
Why use it?
It helps verify endpoint behavior, validation, authentication, error handling, and compatibility instead of relying on manual testing.

Command for Claude Code

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add commands/sagaaidev/mcp-ahrefs/test-api
Clone the repo
git clone --depth 1 https://github.com/SAGAAIDEV/mcp-ahrefs

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for test-api

README.md
[![agentmods](https://agentmods.dev/badge/commands/sagaaidev/mcp-ahrefs/test-api.svg)](https://agentmods.dev/commands/sagaaidev/mcp-ahrefs/test-api)
Your own site
<a href="https://agentmods.dev/commands/sagaaidev/mcp-ahrefs/test-api"><img src="https://agentmods.dev/badge/commands/sagaaidev/mcp-ahrefs/test-api.svg" alt="Measured on agentmods" height="20"></a>
Per session 7 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 542 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00007 $0.00542
Opus 5 $0.00003 $0.00271
Sonnet 5 $0.00001 $0.00108
Haiku 4.5 $0.00001 $0.00054

Measured 3d ago against content hash 213f407ce5e2, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

test-api scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 3d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.claude/commands/test-api.md · 77 lines

What it actually says

I'll test the backend API using pytest, focusing on $ARGUMENTS.

Step 1: Analyze API Structure

First, let me understand the API structure:

Find API endpoints

!find . -name "*.py" -type f | xargs grep -l "@app|@router|@api" | grep -v pycache | head -20

Check existing tests

!find . -path "/test" -name "*.py" | grep -v pycache | head -20

Review test configuration

!test -f pytest.ini && cat pytest.ini || echo "No pytest.ini found" !test -f pyproject.toml && grep -A 10 "[tool.pytest" pyproject.toml || echo "No pytest config in pyproject.toml"

Step 2: Determine Test Scope

Based on the arguments and current changes, I'll focus on:

  • Endpoint patterns to test
  • Test types: unit, integration, or all
  • Authentication requirements
  • Data validation scenarios

Step 3: Create/Update Tests

I'll create appropriate test files based on the feature:

For new endpoints:

  • Create test file in tests/integration/
  • Write tests for all HTTP methods
  • Include validation tests
  • Add error handling tests

For modified endpoints:

  • Update existing tests
  • Add tests for new functionality
  • Ensure backward compatibility

Step 4: Run Tests

Execute pytest with appropriate options:

!pytest -v # Verbose output

Run with coverage:

!pytest --cov=app --cov-report=term-missing

Run specific tests if needed:

!pytest -k "$ARGUMENTS" -v

Step 5: Analyze Results

I'll review:

  • Test pass/fail status
  • Coverage report
  • Performance metrics
  • Any unexpected failures

Common Test Scenarios

I can help test:

  • CRUD Operations: Create, Read, Update, Delete endpoints
  • Authentication: Token validation, permissions
  • Validation: Request body validation, query parameters
  • Error Handling: 4xx and 5xx responses
  • Pagination: Limit/offset, cursor-based
  • Filtering: Query parameters, search
  • File Operations: Upload, download
  • Async Endpoints: Background tasks, WebSockets

Let me begin analyzing your API...

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 3d ago First seen · 77 lines · 7 tokens per session scan A 213f407ce5e2

Subscribe to this mod's changes

test-api is a command published in the GitHub repository SAGAAIDEV/mcp-ahrefs (0 stars, last pushed 1y ago), licensed MIT. It adds 7 tokens to every session and 542 once invoked, about $0.0000 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.