SentiSift MCP
SentiSift MCPサーバー
SentiSiftの公式Model Context Protocol (MCP) サーバーです。MCP互換のAIホスト(Claude Desktop、Cursor、VS Code、Continueなど)から、SentiSiftのコメントモデレーションおよびインテリジェンスAPIをネイティブツールとして呼び出せるようになります。
このツールでできること
インストールすると、AIアシスタントは以下のことが可能になります:
会話の中で直接コメントを分析:「これら50件のコメントをSentiSiftで実行し、ボットと感情の分布を表示して。」
アカウント状態の確認:「SentiSiftの残高はいくらで、サブスクリプションはいつ更新される?」
過去の結果を取得:「昨日のexample.com/breaking-newsの記事の感情履歴を見せて。」
サービス状態の自己診断:「SentiSift APIは準備完了か、それともモデルをロード中か?」
コードは不要です。アシスタントがMCPを通じてツールを呼び出し、結果を報告します。
Related MCP server: Sentiment By Api Ninjas MCP Server
公開されているツール
ツール | 説明 |
| コメントのバッチと記事URLを送信し、ボット/スパムフラグ、感情ラベル、商用コンテンツフラグ、モデレーションの要約、および(Pro/Enterprise版では)インテリジェンスとインターリーブされたInfluenceコメントを受け取ります。 |
| 現在のコメント残高、ティア、機能フラグ、有効な助成金、サブスクリプション状態、Influence統計。 |
| SentiSift APIが準備完了か、モデルをロード中かを確認します。 |
| 記事URLに対する過去のスコアリング済みコメント(Pro/Enterprise版は全履歴を保持。Free/Starter版はバッファ状態のみを返します)。 |
インストール
Python 3.10以上とSentiSift APIキーが必要です。無料キー(1,000コメント、クレジットカード不要)はsentisift.com/pricingで取得できます。
推奨: uvx (インストール不要、常に最新)
uvは、永続的なインストールなしで公開されたPythonアプリを実行します。これがインストール不要のパスです。
# One-time: install uv (mac/linux)
curl -LsSf https://astral.sh/uv/install.sh | sh
# Verify it works (Ctrl-C after a few seconds; the server is meant to be
# launched by your AI host, not run in a terminal).
SENTISIFT_API_KEY=sk_sentisift_... uvx sentisift-mcp代替手段: pip install
pip install sentisift-mcp
sentisift-mcp # run manually to verifyホストの設定
各AIホストには独自の構成ファイルがあります。該当するものを選んでください:
Claude Desktop
構成ファイルを編集します:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.json
mcpServersにSentiSiftのエントリを追加します:
{
"mcpServers": {
"sentisift": {
"command": "uvx",
"args": ["sentisift-mcp"],
"env": {
"SENTISIFT_API_KEY": "sk_sentisift_your_key_here"
}
}
}
}Claude Desktopを再起動します。新しいチャットの左下に新しいツールのインジケーターが表示されるはずです。「SentiSiftを使って残高を確認して」と試してみてください。
Cursor
Cursorは設定 → MCPサーバーパネルからMCPをサポートしています。以下を追加してください:
名前:
sentisiftコマンド:
uvx引数:
sentisift-mcp環境変数:
SENTISIFT_API_KEY=sk_sentisift_your_key_here
または、Claude Desktopの例と同じ構造で ~/.cursor/mcp.json を直接編集してください。
VS Code (MCP拡張機能を使用)
ユーザーまたはワークスペースの settings.json を編集します:
{
"mcp.servers": {
"sentisift": {
"command": "uvx",
"args": ["sentisift-mcp"],
"env": {
"SENTISIFT_API_KEY": "sk_sentisift_your_key_here"
}
}
}
}Continue.dev
~/.continue/config.json 内:
{
"mcpServers": [
{
"name": "sentisift",
"command": "uvx",
"args": ["sentisift-mcp"],
"env": {
"SENTISIFT_API_KEY": "sk_sentisift_your_key_here"
}
}
]
}その他のMCP互換ホスト
このサーバーはstdio経由でMCPと通信します。ホストを uvx sentisift-mcp(pip経由でインストールした場合は sentisift-mcp)に向け、環境変数に SENTISIFT_API_KEY を設定してください。
アシスタントとの対話方法
設定が完了すると、自然言語でのプロンプトが機能します。例:
「SentiSiftの残高を確認して。」
「https://example.com/breaking-story の記事について、これら20件のコメントをSentiSiftで実行して。コメントは以下の通り:」 (貼り付け)
「SentiSift APIは今すぐ使える状態か、それともまだロード中か?」
「SentiSiftから https://example.com/article-42 の処理済みコメントを取得して。」
アシスタントが適切なツールを選択し、正しい引数を渡し、結果を要約します。呼び出しが失敗した場合、エラーレスポンスには関連するドキュメントセクションへのディープリンクが含まれるため、アシスタントが自己修正できます。
プライバシー
サーバーは
sentisift-mcp/<version>として識別されるUser-Agentヘッダーを送信するため、利用ログにおいてMCPトラフィックと直接SDKトラフィックを区別できます。その他のテレメトリは送信されません。サーバーはローカルマシン上で実行されます。
api.sentisift.comへの呼び出しのみを行います。APIキーはマシン上(ホストの環境設定内)に留まります。このサーバーによってディスクにログ記録されることはありません。
ソース
ソースおよび課題追跡: gitlab.com/pickel-fintech/sentisift-sdks。
リンク
Python SDK (このMCPサーバーはこれをラップしています)
ライセンス
MIT — LICENSEを参照してください。このクライアントが呼び出すSentiSift APIサービスは、sentisift.com/terms.htmlによって個別に管理されています。APIの使用には sentisift.com/pricing からのAPIキーが必要です。
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityDmaintenanceProvides access to Sentiment402 market sentiment data for global markets, crypto, TradFi, and specific assets, with built-in support for x402 micropayment protocol when API responses require payment.MIT
- AlicenseAqualityDmaintenanceEnables sentiment analysis of text blocks using the Api Ninjas API, returning sentiment scores and overall sentiment classification for up to 2000 characters of text.1MIT
- Alicense-qualityDmaintenanceProvides a standardized interface for interacting with Semanticscholar's tools and services through a unified API.4MIT
- Alicense-qualityDmaintenanceAlgorithmic text and NLP analysis server providing sentiment, readability, keyword extraction, language detection, stats, and more via REST and MCP.3MIT
Related MCP Connectors
Deterministic Hacker News developer sentiment, themes & feature requests via MCP. No API key.
Search and analyze global news coverage and US TV transcripts via the GDELT Project APIs.
Summarize URLs, repurpose content, daily news digests, find competitors. Cost telemetry built in.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/pickelfintech/sentisift-sdks'
If you have feedback or need assistance with the MCP directory API, please join our Discord server