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.
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:
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 READMEartifactQuery stored tool artifacts with Python code
gateway.inspect_toolGet full documentation for a tool from the upstream server
runExecute upstream tool/command and capture JSON output
next_pageContinue 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
Installation
pipx install sift-gateway
sift-gateway init --from claudeFor 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.
- Story by loumaciel · 2026-03-05
Compare sift-gateway with
Last updated · Auto-generated from public README + GitHub signals.