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

Catalog / MCP

MCP servers

Start with our live MCP bridges — cheaperllm and anymodl — then add community starter servers when you need local files or git. Prefer building in Cursor.

Our products

Our MCP (live)

HTTP streamable MCP — one URL + one API key per product. Auth with Bearer ${API_KEY} or X-API-Key: ${API_KEY} (both work).

modelsourslive

cheaperllm

OpenAI-compatible multi-model API with MCP. One key for 600+ models — chat, images, domains, DNS, credits.

Tools: chat · list_models · get_credits · list_services · get_usage · generate_image · generate_image_premium · generate_video · embed · search_domain · register_domain · manage_dns

Install JSON (Claude / Cursor)
{
  "cheaperllm": {
    "url": "https://mcp.cheaperllm.com/mcp",
    "headers": {
      "Authorization": "Bearer ${CHEAPERLLM_API_KEY}"
    }
  }

Or use "X-API-Key": "${CHEAPERLLM_API_KEY}" instead of Authorization.

bridgeourslive

anymodl

One key + one MCP URL for every model and agent tool. Attach once, route everywhere — same tool surface as cheaperllm.

Tools: chat · list_models · get_credits · list_services · get_usage · generate_image · generate_image_premium · generate_video · embed · search_domain · register_domain · manage_dns

Install JSON (Claude / Cursor)
{
  "anymodl": {
    "url": "https://mcp.anymodl.com/mcp",
    "headers": {
      "Authorization": "Bearer ${ANYMODL_API_KEY}"
    }
  }

Or use "X-API-Key": "${ANYMODL_API_KEY}" instead of Authorization.

Discovery

AgentStack catalog (JSON API)

Not an MCP server — a crawlable JSON API agents can fetch directly. No npx mcp-remote needed.

catalogjson

agentstack-catalog

Machine-readable index of tools, MCP entries, packs, and affiliate links on this site. Agents should GET the JSON and parse tools, mcp, and packs arrays.

curl example
curl -s https://agentstackkit.com/api/catalog.json | jq '.mcp, .packs'
Agent guidance
# Agents: fetch this JSON at session start
GET https://agentstackkit.com/api/catalog.json

# Parse fields:
# - mcp[]     → MCP server entries (product URLs, summaries)
# - packs[]   → downloadable packs under /packs/
# - tools[]   → CLI helpers and utilities
# - links     → our product CTAs (cheaperllm, anymodl, OneAIPass, …)

# Wire live MCP from the catalog — do NOT point mcp-remote at this URL.

Starter pack: /packs/mcp-starter/ · raw JSON: /api/catalog.json

Community

Community / starter MCPs

Reference stdio servers from the Model Context Protocol ecosystem. Add these when you need local files, git, or sqlite — not for model routing.

communitylocalstdio

filesystem

Read/write scoped directories. Always pin roots — never give an agent your entire home folder.

Install JSON (Claude / Cursor)
{
  "filesystem": {
    "command": "npx",
    "args": ["-y", "@modelcontextprotocol/server-filesystem", "/path/to/project"]
  }
communityhttp

fetch

URL fetch for research agents. Pair with fetch-safe policies from the tools pack.

Install JSON
{
  "fetch": {
    "command": "npx",
    "args": ["-y", "@modelcontextprotocol/server-fetch"]
  }
communitystate

memory

Persistent knowledge graph for multi-session agents. Store decisions, not secrets.

Install JSON
{
  "memory": {
    "command": "npx",
    "args": ["-y", "@modelcontextprotocol/server-memory"]
  }
communitygit

github

Issues, PRs, and file contents via GitHub MCP. Scope tokens to a single org when possible.

Install JSON
{
  "github": {
    "command": "npx",
    "args": ["-y", "@modelcontextprotocol/server-github"],
    "env": {
      "GITHUB_PERSONAL_ACCESS_TOKEN": "${GITHUB_TOKEN}"
    }
  }
communitydata

sqlite

Local SQLite for agent scratchpads, crawl caches, and eval scores without standing up a DB.

Install JSON
{
  "sqlite": {
    "command": "npx",
    "args": ["-y", "@modelcontextprotocol/server-sqlite", "--db-path", "./agent.db"]
  }

Need a chat UI with 600+ models while you wire MCP? Start free on OneAIPass — $0.25 credit.