Featured

Deploy OpenClaw in 60 seconds β€” 20% off logoDeploy OpenClaw in 60 seconds β€” 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger β†’
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger β†’
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free β†’
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free β†’
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data β€” no proxies, no parsers, no maintenance.

Start building free β†’
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it β€” secured from day one.

Get it set up for you β†’
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free β†’
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here β†’

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

pickelfintech/sentisift-sdks MCP server](https://glama.ai/mcp/servers/pickelfintech/sentisift-sdks/badges/score.svg)](https://glama.ai/mcp/servers/pickelfintech/sentisift-sdks) 🐍 ☁️ - Comment moderation and intelligence for any article: bot/spam...

README.md

SentiSift SDKs

Official client libraries for the SentiSift comment-moderation and intelligence API. Three published packages, all open source for the integration code so developers can read, audit, and contribute.

| Package | Source | Registry | Install | |---|---|---|---| | sentisift (Python) | python/ | PyPI | pip install sentisift | | @sentisift/client (Node/TypeScript) | node/ | npm | npm install @sentisift/client | | sentisift-mcp (MCP server) | mcp/ | PyPI | uvx sentisift-mcp |

What is SentiSift?

SentiSift filters bots, spam, and noise out of comment sections without silencing real voices. It scores each comment on five independent axes (sentiment, eloquence, length, behavioral patterns, commercial signals) and returns moderation decisions plus crowd-level analytics. On paid tiers, it also contributes constructive perspectives when a discussion skews one-sided ("Influence").

Get a free API key (1,000 comments, no credit card) at sentisift.com/pricing. Full API reference: sentisift.com/api-docs.html.

Quick start

Python

pip install sentisift
from sentisift import SentiSift

client = SentiSift()  # reads SENTISIFT_API_KEY from env
result = client.analyze(
    article_url="https://example.com/article/1",
    comments=[
        {"text": "Great article!", "author": "alice", "time": "2026-04-18T10:00:00"},
    ],
)

Node / TypeScript

npm install @sentisift/client
import { SentiSift } from "@sentisift/client";

const client = new SentiSift();
const result = await client.analyze({
  articleUrl: "https://example.com/article/1",
  comments: [{ text: "Great article!", author: "alice", time: "2026-04-18T10:00:00" }],
});

MCP (Claude Desktop, Cursor, VS Code, Continue)

uvx sentisift-mcp     # one-shot run via uv
# or
pip install sentisift-mcp     # then add to your MCP host's config

Then add the SentiSift entry to your host's MCP config (Claude Desktop's claude_desktop_config.json, Cursor's ~/.cursor/mcp.json, VS Code's settings.json, etc.). See mcp/README.md for host-specific snippets.

Repository layout

.
β”œβ”€β”€ python/                Python SDK (sentisift on PyPI)
β”œβ”€β”€ node/                  Node SDK (@sentisift/client on npm)
β”œβ”€β”€ mcp/                   MCP server (sentisift-mcp on PyPI)
β”œβ”€β”€ OVERVIEW.md            Endpoint coverage matrix, supported platforms, release history
β”œβ”€β”€ RELEASE_RUNBOOK.md     AI-driven release procedure (read this for any version bump)
β”œβ”€β”€ RELEASE_CHECKLIST.md   Engineering line-by-line checklist
└── .gitlab-ci.yml         CI: tests on every push; publishes on tag push

Versioning

All three packages follow Semantic Versioning. Pre-1.0 minor versions may include breaking changes. Per-package CHANGELOG.md files document every release.

Contributing

Bug reports and feature requests welcome via issues. For pull requests, please open an issue first to discuss the change.

Architecture

The full SentiSift API service (auth, billing, scoring pipeline, scrapers) lives in a separate private repository. This public repository contains only the client-facing packages and their integration code, OpenAPI-derived models, and tests.

Documentation is hosted on sentisift.com:

License

The SDK source code in this repository is MIT licensed β€” see LICENSE. The SentiSift API service itself is a separate hosted service governed by the Terms of Service at sentisift.com/terms.html. Use of the API requires an API key obtained from sentisift.com/pricing.

Contact

See related servers & alternatives β†’

Related MCP servers

Browse all β†’

Related guides

Hand-picked reading to help you choose and use Finance & Payments servers.