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

Catalog / MCP

MCP servers

Copy install snippets into Claude Desktop or Cursor. For Claude models without a consumer affiliate, route API calls through cheaperllm — or open claude.ai for the product UI. Prefer building in Cursor.

localstdio

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"]
  }
http

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"]
  }
state

memory

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

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

cheaperllm-router

OpenAI-compatible multi-model API with MCP. One key for Claude and other routes — pay what you use.

Install JSON
{
  "cheaperllm": {
    "url": "https://cheaperllm.com/mcp",
    "headers": {
      "Authorization": "Bearer ${CHEAPERLLM_API_KEY}"
    }
  }
bridgeours

anymodl-bridge

One key + one MCP URL for every model and agent tool. Attach once, route everywhere.

Install JSON
{
  "anymodl": {
    "url": "https://anymodl.com/mcp",
    "headers": {
      "Authorization": "Bearer ${ANYMODL_API_KEY}"
    }
  }
git

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}"
    }
  }
data

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"]
  }
catalog

agentstack-catalog

Read-only MCP that exposes this site’s catalog.json so agents can discover packs without scraping HTML.

Install JSON
{
  "agentstack-catalog": {
    "command": "npx",
    "args": ["-y", "mcp-remote", "https://agentstackkit.com/api/catalog.json"]
  }

Starter pack: /packs/mcp-starter/

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