MCP Catalogs
Home

sift-gateway

by lourencomaciel·29·Score 46

Sift is a reliability gateway for MCP and CLI tools that stores artifacts and returns schema-stable JSON outputs.

developer-toolsai-llmops-infra
4
Forks
1
Open issues
1 mo ago
Last commit
2d ago
Indexed

Overview

Sift acts as an intermediary layer between AI agents and upstream MCP servers or CLI commands. It addresses key pain points with tool output including large context consumption, inconsistent API responses, pagination issues, and sensitive data exposure. By storing full payloads as SQLite artifacts and returning either compact references or inline data, Sift improves accuracy from 33% to 99% while reducing input tokens by 95.4% according to benchmarks. The solution supports both MCP clients and CLI workflows with a unified artifact contract.

Try asking AI

After installing, here are 5 things you can ask your AI assistant:

you:Handling large paginated API responses in MCP workflows
you:Redacting sensitive data from tool outputs
you:Ensuring consistent schema across different MCP server responses
you:Querying stored artifacts with Python code for complex analysis
you:Improving accuracy while reducing context token usage

When to choose this

Choose Sift when working with MCP tools that produce large outputs, handle sensitive data, or require pagination completion, especially when you need to maintain data reliability while minimizing context usage.

When NOT to choose this

Avoid Sift if you need low-latency tool responses, have very simple API interactions without pagination concerns, or prefer direct tool access without the additional abstraction layer.

Tools this server exposes

4 tools extracted from the README
  • artifact

    Query stored tool artifacts with Python code

  • gateway.inspect_tool

    Get full documentation for a tool from the upstream server

  • run

    Execute upstream tool/command and capture JSON output

  • next_page

    Continue pagination from the previous artifact

Note: Tools were inferred from the MCP gateway functionality described in the README, particularly the sections on how Sift works with MCP tools and artifact querying. The exact MCP tool names aren't explicitly listed in the provided README excer

Comparable tools

mcp-server-listartifact-servershell-mcpcontext-writer

Installation

pipx install sift-gateway
sift-gateway init --from claude

For Claude Desktop, add to the config.json:

{
  "mcpServers": {
    "sift": {
      "command": "sift-gateway",
      "args": ["serve"],
      "env": {
        "PYTHONPATH": "/path/to/sift"
      }
    }
  }
}

On Hacker News

Recent discussion from the developer community.

Compare sift-gateway with

GitHub →

Last updated · Auto-generated from public README + GitHub signals.