AgentStack Kit
Our stack OneAIPass cheaperllm anymodl Agora Domains TLD Bazaar BareDomains Cursor referral

The missing starting point for agent builders

Free MCP tools for a working agent setup.

Start with tested MCP configs, safe CLI tools and repeatable workflows instead of spending day one hunting docs, debugging JSON and wiring the same utilities again.

No account for downloadsNo npm install for CLI toolsWorks with Cursor and MCP hosts

Live cheaperllm MCP, 14 downloadable CLI tools in /tools/bin/, and ready-to-ship packs.

The setup tax

A blank agent is not a working system.

The model is only one piece. Reliable agents also need tool discovery, bounded fetches, schema checks, cost visibility, environment gates and replayable logs.

Before

Hours lost to connection debugging

Copying stale MCP examples, guessing auth headers and discovering timeouts only after the agent starts work.

With the kit

Attach, probe, then build

Use a ready-made config and verify the endpoint before trusting it with a production workflow.

As you scale

Repeat the same safe workflow

Use prompt linting, token metering, bounded fetches and session tapes instead of inventing guardrails per project.

Free kit: configs, tools and workflows. Optional paid layer: one CheaperLLM key for live multi-model routing.

Get a free API key

Quick start

Start in 60 seconds

Key → MCP JSON → probe. Three steps to a live cheaperllm bridge in Cursor or any MCP host.

Step 1

Get your API key

Sign up at cheaperllm and copy your key. Export as CHEAPERLLM_API_KEY — never commit it into JSON.

Step 2

Paste MCP JSON

Set url to https://mcp.cheaperllm.com/mcp and Authorization: Bearer your key. Ready-made JSON is in the attach pack.

Step 3

Verify

Run mcp-probe from /tools/bin/ — expect tools listed, not a timeout.

node tools/bin/mcp-probe.mjs https://mcp.cheaperllm.com/mcp
Download mcp-probe

Live attach

MCP endpoints — copy & attach

HTTP MCP bridges you can wire today. Catalog discovery is a JSON fetch — not an MCP server.

cheaperllm-router

https://mcp.cheaperllm.com/mcp · Bearer ${CHEAPERLLM_API_KEY}

Cursor MCP JSON snippet
{
  "mcpServers": {
    "cheaperllm": {
      "url": "https://mcp.cheaperllm.com/mcp",
      "headers": { "Authorization": "Bearer ${CHEAPERLLM_API_KEY}" }
    }
  }
}
Get key

anymodl-bridge

https://mcp.anymodl.com/mcp · Bearer ${ANYMODL_API_KEY}

Cursor MCP JSON snippet
{
  "mcpServers": {
    "anymodl": {
      "url": "https://mcp.anymodl.com/mcp",
      "headers": { "Authorization": "Bearer ${ANYMODL_API_KEY}" }
    }
  }
}
Get key

agentstack-catalog

https://agentstackkit.com/api/catalog.json · type: json-api · fetch directly

Tools, MCPs, packs, and monetization links in one machine-readable file. Use catalog-pull.mjs to pretty-print.

Open catalog

tools/bin

14 CLI tools — no npm install

Node 18+ scripts. Download individual .mjs files or read README.md.

mcp

mcp-probe

Probe MCP HTTP endpoints — initialize, tools/list, resources/list.

discovery

catalog-pull

Fetch and pretty-print catalog.json by section.

http

fetch-safe

Bounded HTTP fetch with allowlist and size cap.

schema

ask-json

Validate JSON replies against a simple schema.

crawl

crawl-map

Merge robots.txt, sitemap.xml, and llms.txt into a URL map.

cost

token-meter

Estimate tokens and optional cost per call.

routing

model-router

cheaperllm tier hints + sample curl.

domains

domain-check

DNS resolve + registrar search CTAs.

prompts

prompt-lint

Scan prompts for injection and missing constraints.

review

diff-pack

Summarize unified diffs for agent review loops.

security

env-gate

Fail fast if required env vars are missing.

debug

session-tape

Record tool I/O as replayable JSONL.

packaging

pack-zip

Bundle a workflow folder with manifest checksums.

smoke test

smoke-site

Check a deployed site for HTTP, metadata, sitemap, robots, and broken first-party links.

Also: dual-registrar.md — OpenProvider + Porkbun checklist (see domain-ops pack).

Download packs

Ready-to-ship folders

MCPattach

cheaperllm-attach

Drop-in Cursor + Claude Desktop MCP JSON for https://mcp.cheaperllm.com/mcp. Pair with mcp-probe before you ship.

domainslaunch

domain-ops

Dual-registrar law + launch checklist for agent-built sites. Agora Domains, TLD Bazaar, BareDomains on one engine.

What ships

Four lanes. One kit.

Static packs you can clone, zip, or feed to an agent. Full map in llms.txt.

Tools

Agent tools

14 CLI helpers — fetch, schema, MCP probe, domain check, and more.

MCP

MCP servers

Live HTTP bridges plus stdio install JSON for filesystem, fetch, memory.

Workflows

Playbooks

Agent loops for research, shipping sites, domain ops, and cost-aware routing.

Prompts

Prompt packs

12 ops-grade prompts for planning, review, extraction, and tool discipline.

Credits & models

Run agents without five subscriptions

OneAIPass

Cancel five AI subscriptions. One chat, 600+ models, pay what you use.

Start free — $0.25 credit

cheaperllm API

OpenAI-compatible multi-model API. One key, MCP at mcp.cheaperllm.com. Route Claude models via API — no fake affiliate links.

Get API key

anymodl

One key + one MCP URL (mcp.anymodl.com) for every model and agent tool.

Attach MCP

Editor

Build in Cursor

AgentStack packs are written for agent-first editors. Referral code BVN3MVJH9SDO — 50% off first month for new users.

Try Cursor (referral)

Domains for agents

Ship a site, register the name

Agora Domains

Register domains with renewal prices shown up front.

TLD Bazaar

Deal-hunter domain prices. Same registrar engine.

MCP tools FAQ

Start with a tested connection, then build

The shortest path from a blank agent to a repeatable tool workflow.

What are MCP tools?

Capabilities exposed through the Model Context Protocol, such as fetching data, reading files or calling an API. Browse the 14 free MCP and agent tools.

Do downloads require an account?

No. Tools, configs, prompt packs and workflow files are directly downloadable from the download catalog.

What should I install first?

Follow the getting-started guide: attach one MCP, run mcp-probe, then add workflows and prompts.