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의 경우) 인텔리전스 + 인터리브된 영향력 댓글을 받습니다. |
| 현재 댓글 잔액, 티어, 기능 플래그, 활성 보조금, 구독 상태, 영향력 통계를 확인합니다. |
| 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을 다시 시작합니다. 새 채팅의 왼쪽 하단 모서리에 새로운 도구 표시기가 나타나야 합니다. 다음을 시도해 보세요: "Use SentiSift to check my balance."
Cursor
Cursor는 Settings → MCP Servers 패널을 통해 MCP를 지원합니다. 다음을 추가하세요:
Name:
sentisiftCommand:
uvxArguments:
sentisift-mcpEnvironment variables:
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를 설정하세요.
어시스턴트와 대화하는 방법
구성 후 자연어 프롬프트가 작동합니다. 몇 가지 예시입니다:
"Check my SentiSift balance."
"Run these 20 comments through SentiSift for the article at https://example.com/breaking-story. Here are the comments:" (댓글 붙여넣기)
"Is the SentiSift API ready right now, or is it still loading?"
"Fetch the processed comments for https://example.com/article-42 from SentiSift."
어시스턴트가 올바른 도구를 선택하고, 올바른 인수를 전달하며, 결과를 요약합니다. 호출이 실패하면 오류 응답에 관련 문서 섹션으로 연결되는 딥 링크가 포함되어 어시스턴트가 스스로 수정할 수 있습니다.
개인정보 보호
서버는 사용 로그에서 MCP 트래픽과 직접 SDK 트래픽을 구분할 수 있도록
sentisift-mcp/<version>으로 식별되는User-Agent헤더를 보냅니다. 다른 원격 측정은 없습니다.서버는 로컬 컴퓨터에서 실행됩니다.
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