Skip to main content
AllMCPs
BrowseBestCategoriesStackCompareToolsGuidesBlog
Log in Submit MCP

Stay in the loop

Get new MCP servers and top picks in your inbox.

AllMCPs

The open directory for discovering and installing Model Context Protocol servers.

AllMCPs on GitHub (opens in a new tab)
Launched onTiny Startupstinystartups.com
Explore
  • Browse servers
  • Best MCP servers
  • Categories
  • MCP clients
  • Agent prompts
  • Stack Builder
  • Compare servers
  • Random discovery New
  • Submit a server
  • Pricing & Boost Boost
Learn
  • Guides hub
  • What is MCP?
  • Install guide
  • Build an MCP server
  • Deploy an MCP server
  • Security guide
  • Troubleshooting
  • MCP for SEO & AEO
  • Protocol versioning
  • Blog & updates
Tools
  • All developer tools
  • Config generator
  • Config validator
  • Config auditor
  • MCP playground
  • Token calculator
  • OpenAPI → MCP
  • Badge generator
For agents
  • REST API docs
  • Trust & traffic Live
  • Remote MCP server SSE ↗ (opens in a new tab)
  • llms.txt ↗ (opens in a new tab)
  • Catalog JSON ↗ (opens in a new tab)
Company
  • About
  • Advertise Sponsor
  • Contact
  • GitHub ↗ (opens in a new tab)
  • Terms
  • Privacy
AllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistLaunched on Tiny StartupsFeatured on ShowMeBestAIFeatured on ShowMeBestAIFind us on LaunchZoneFind us on LaunchZoneAllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistLaunched on Tiny StartupsFeatured on ShowMeBestAIFeatured on ShowMeBestAIFind us on LaunchZoneFind us on LaunchZone
© 2026 Jackalope Digital LLC. All rights reserved.
  1. Home
  2. 🧮 Data Science Tools
  3. Filter MCP Server
Filter MCP Server logo
Health: ActiveRecent health check succeeded.Last checked 9/7/2026, 4:47:02 AM

Filter MCP Server

User RatingsBe the first to rate and review this MCP server!
View Repository1 GitHub StarsTotal stargazers on GitHub for the source repository (1 stars).
developer-toolsdata-structuresbenchmarkingmcp

Compares exact and approximate membership filters through shared MCP tools for accuracy, memory, and query behavior.

Quick Install

Automated & IDE Setup

Copy the AI prompt to install this server into Claude Code, Cursor, or another agent — or use 1-click editor setup below.

One-click editor setup isn’t available for this listing yet — we don’t have a confirmed install command, and we’d rather show nothing than point your editor at the wrong package or host. Follow the project’s own setup instructions, linked above.

Manual Client & Custom JSON ConfigExpand JSON â–¾
No confirmed setup config for this listing yet. We only publish a config block when the install details come from the project itself — its README, its docs, or a verified owner. We haven’t found those for chohyerinn/filter-mcp-server, and we’d rather show nothing than a guess you’d paste into your client. Follow the project’s own setup instructions for the current steps.
Install Directory Badge Claim listing Alternatives🧮 More in Data Science Tools

Overview

The chohyerinn/filter-mcp-server MCP server compares Bloom, Counting Bloom, Cuckoo, simplified SuRF, and exact-set filters through MCP tools. Each implementation exposes a common interface for building, inserting, querying, deleting where supported, and measuring estimated memory or false-positive behavior. Use it to experiment with search dictionaries, autocomplete data, blocked-word checks, or other membership workloads rather than as a production-optimized filter service. Claude Desktop can run the individual filter servers from the repository with Python.

Use cases

•Compare membership accuracy across filter structures
•Measure estimated memory and false-positive behavior
•Test keyword dictionaries for autocomplete or blocked-word checks
•Evaluate prefix and range query support
•Benchmark local contains-query latency

Key features

•Shared MCP interface across five filter implementations
•Bloom, Counting Bloom, Cuckoo, simplified SuRF, and exact-set options
•Membership, insertion, deletion, prefix, and range operations where supported
•Estimated memory and false-positive-rate tools
•Synthetic benchmark and smoke-test commands

Capabilities & Tool Schemas

Inspect callable tools, capabilities, and parameters exposed to AI agents by Filter MCP Server.

Extracted Tool Capabilities
Shared MCP interface across five filter implementations
Bloom, Counting Bloom, Cuckoo, simplified SuRF, and exact-set options
Membership, insertion, deletion, prefix, and range operations where supported
Estimated memory and false-positive-rate tools
Synthetic benchmark and smoke-test commands

How Filter MCP Server works

What chohyerinn/filter-mcp-server MCP server does

The chohyerinn/filter-mcp-server MCP server provides several independently selectable data-structure implementations behind a shared MCP interface. It includes an exact hash-set baseline plus approximate filters: Bloom, Counting Bloom, Cuckoo, and a simplified SuRF implementation.

The project is intended for comparing behavior under the same workload. Its example scenario is keyword dictionary management, including autocomplete, keyword lookup, blocked-word checks, and dictionary membership tests. The comparison considers membership accuracy, false positives, estimated memory use, local query latency, mutation support, and prefix or range queries.

The SuRF implementation is explicitly simplified and educational. The repository describes the project as an experimentation and comparison tool, not as a production optimization package.

How it works

An MCP client sends a tool request to the selected server. The MCP layer exposes a common ADT-style interface, a registry chooses the filter implementation, and the selected class processes the request before returning the result.

Available operations are:

  • build(items) to initialize a filter from a dataset
  • insert(x) to add a key
  • contains(x) to test membership
  • delete(x) to remove a key when supported
  • range_query(lo, hi) for range lookups where supported
  • prefix_query(prefix) for prefix lookups where supported
  • memory_usage() for estimated memory consumption
  • false_positive_rate() for false-positive measurement

The structures do not provide identical behavior. Bloom filters support approximate membership but not deletion, while Counting Bloom and Cuckoo filters support deletion. The simplified SuRF supports prefix and range queries but not deletion. The exact-set baseline avoids false positives and supports the full query and mutation behavior described by the project.

Setup and configuration

The repository provides separate Python entry points for each implementation. Claude Desktop can be configured with one or more MCP servers using these scripts:

config.json
{
  "mcpServers": {
    "filter-naive": {
      "command": "python",
      "args": ["src/filter_/filter_naive_server.py"]
    },
    "filter-bloom": {
      "command": "python",
      "args": ["src/filter_/filter_bloom_server.py"]
    },
    "filter-counting-bloom": {
      "command": "python",
      "args": ["src/filter_/filter_counting_bloom_server.py"]
    },
    "filter-cuckoo": {
      "command": "python",
      "args": ["src/filter_/filter_cuckoo_server.py"]
    },
    "filter-surf": {
      "command": "python",
      "args": ["src/filter_/filter_surf_server.py"]
    }
  }
}

Run the benchmark from the repository with PYTHONPATH=src python -m membership_filters.benchmark. The test suite can be run with PYTHONPATH=src python -m unittest discover -s tests. PowerShell equivalents are included in the README.

Tools and capabilities

The chohyerinn/filter-mcp-server MCP server keeps the tool names consistent across implementations, allowing the same dataset and queries to be sent to different structures. This supports side-by-side experiments with approximate membership, deletion behavior, prefix and range support, estimated memory, and false-positive measurements.

Benchmark results use fixed synthetic workloads and absent-query probes. Reported values include estimated memory from memory_usage(), measured false-positive rates from false_positive_rate(), and average local contains() latency. The repository distinguishes these measured benchmark outputs from its qualitative structure comparison.

Limitations and notes

Approximate filters trade reduced memory use for possible false positives or restricted operations. The README does not present the qualitative comparison table as a measured benchmark result. The simplified SuRF server should not be treated as a complete LOUDS-based production SuRF implementation.

The chohyerinn/filter-mcp-server MCP server is therefore best suited to controlled comparison, teaching, and local experimentation. Choose the exact-set server when false positives are unacceptable, and select an approximate implementation only when its operation and accuracy trade-offs fit the workload.

Read the full README →View source on GitHub →

Related MCP Servers

View all in Data Science Tools View all alternatives
  • Bundler MCP logoBundler MCP

    Enables agents to query local information about dependencies in a Ruby project's Gemfile.

    🧮 Data Science Tools2 views
    Compare vs Bundler MCP →
  • Growthbook MCP logoGrowthbook MCP

    Tools for creating and interacting with GrowthBook feature flags and experiments.

    🧮 Data Science Tools3 views
    Compare vs Growthbook MCP →
  • Dingo logoDingo

    MCP server for the Dingo: a comprehensive data quality evaluation tool. Server Enables interaction with Dingo's rule-based and LLM-based evaluation capabilities and rules&prompts listing.

    🧮 Data Science Tools3 views
    Compare vs Dingo →
  • MCP Compress logoMCP Compress

    Data compression MCP server. 7 tools for gzip, brotli, deflate, and TurboQuant quantization. Auto-selects best algorithm. 60x compression on docs. Zero dependencies.

    🧮 Data Science Tools5 views
    Compare vs MCP Compress →

Adoption & maintenance

Factual signals from GitHub, npm, and our automated checks — not a rating.

GitHub stars
1
Stargazers on the source repository.
Last commit
2mo ago
Most recent push to the default branch.
Directory activity
3 views
Config copies, upvotes, and views on AllMCPs.

Reviews

No reviews yet — be the first to share how this listing worked for you.

Frequently Asked Questions about Filter MCP Server

Clone the repository and run one of its Python entry points, such as `python src/filter_/filter_bloom_server.py`. The provided material does not specify a package-manager installation command.

AllMCPs Directory Badge

Full Badge Customizer

Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.

Badge Style:
Live Dynamic SVG PreviewFilter MCP Server AllMCPs Directory Badge
Markdown (GitHub README)
[![AllMCPs](https://allmcps.com/api/badge/chohyerinn-filter-mcp-server?style=directory)](https://allmcps.com/mcp/chohyerinn-filter-mcp-server)
HTML Embed
<a href="https://allmcps.com/mcp/chohyerinn-filter-mcp-server"><img src="https://allmcps.com/api/badge/chohyerinn-filter-mcp-server?style=directory" alt="Filter MCP Server on AllMCPs" /></a>

Technical Specs & Signals

Category🧮Data Science Tools
PricingFree
More technical detailsExpand â–¾
AuthNo auth required
ClientsClaude Desktop
Last updatedSep 7, 2026
Views3
Unique ViewsTotal visits recorded for this listing page on AllMCPs.
Installs0
Installs & Copy ActionsTotal times users copied install commands or configuration snippets for this server.
GitHub stars1
GitHub Star CountTotal stargazers on GitHub representing community popularity (1 stars).
Last commit2mo ago
Last Repository CommitThe most recent commit or push recorded for this server's GitHub repository.Last commit on Jun 28, 2026
35Quality signal: Fair · 35/100How this signal is calculated ▾
Server availabilityNot measured

Not scored for repo-hosted servers — we can't reach the running server, only its GitHub page. Hosted MCP endpoints are health-checked live.

Verified ownership10/20
Documentation & tools13/30
Adoption & activity3/15
Community engagement0/10

A guidance signal from public completeness & health data — not a user rating. New listings start lower and rise as they add docs, get verified, and grow adoption. Signals we can't observe for a listing are skipped, not counted against it.

★ FeaturedMoxie Docs MCP logo

Moxie Docs MCP

MCP & Agent Skills for Automated Documentation, and codebase conventions + context

Explore Server →

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to unlock edit access and the Official badge and attach your website — proof is checked automatically, then reviewed by our team.

Free dofollow backlink: add your website and place the AllMCPs badge on it — no claim needed. We detect it automatically and keep it verified as long as the badge stays live.

Claim & get free dofollow

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.

Explore more

More in 🧮 Data Science Tools →Best MCP servers for Data Science →Alternatives to Filter MCP Server →Install in Claude DesktopInstall in CursorInstall in VS Code