1. Conduid
  2. Finance
  3. pickelfintech/sentisift-sdks
MCP server · Finance

pickelfintech/sentisift-sdks

Comment moderation and intelligence for any article: bot/spam detection, multilingual sentiment analysis, and Influence (constructive comment generation on paid tiers). Free tier: 1,000 comments, no credit card.

34Low

Scored 4 months ago · breakdown

About pickelfintech/sentisift-sdks

pickelfintech/sentisift-sdks is an MCP server in the Finance category: comment moderation and intelligence for any article: bot/spam detection, multilingual sentiment analysis, and Influence (constructive comment generation on paid tiers). Free tier: 1,000 comments, no credit card. It has been installed 0 times through Conduid.

Install

Clone
git clone https://github.com/pickelfintech/sentisift-sdks

This server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.

Ask AI

Ask AI about pickelfintech/sentisift-sdks

Powered by Claude · Grounded in docs

I know everything about pickelfintech/sentisift-sdks. Ask me about installation, configuration, usage, or troubleshooting.

Security checks

  • ·README presentNot checked yet.
  • ·License declaredNot checked yet.
  • ·Tests presentNot checked yet.
  • ·Dependencies pinnedNot checked yet.
  • ·No dynamic code executionNot checked yet.
  • ·Scoped permissionsNot checked yet.

README

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

README mirrored from the source repository 4 months ago. The original is authoritative.

Questions

About pickelfintech/sentisift-sdks

How do I install pickelfintech/sentisift-sdks?

Run git clone https://github.com/pickelfintech/sentisift-sdks, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is pickelfintech/sentisift-sdks safe to use with an AI agent?

Its trust score is 34 out of 100 (low). Conduid hasn't run static security checks on this repository yet, so review the source yourself before granting it credentials. It has no ConduID identity yet, so agent calls to it are not receipted.

Is pickelfintech/sentisift-sdks still maintained?

Conduid hasn't recorded a commit date for this repository yet. Check the repository directly for recent activity.