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 .
local stdio
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"]
}
Copy
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"]
}
Copy
state
memory
Persistent knowledge graph for multi-session agents. Store decisions, not secrets.
Install JSON
{
"memory": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-memory"]
}
Copy
models ours
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}"
}
}
Copy
bridge ours
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}"
}
}
Copy
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}"
}
}
Copy
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"]
}
Copy
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"]
}
Copy
Starter pack: /packs/mcp-starter/
Need a chat UI with 600+ models while you wire MCP? Start free on OneAIPass — $0.25 credit .