A community-driven registry for the Claude Code ecosystem. Not affiliated with Anthropic.
Are you the author? Sign in to claim
networklytics-mcp
⚠️ 서비스 운영 중단 안내 현재 NetworkLytics 서버가 운영 중단 상태입니다.
NETWORKLYTICS_API_URL을 로컬 서버 주소로 변경하면 로컬 환경에서는 사용 가능합니다.
NetworkLytics MCP (Model Context Protocol) server.
Claude Desktop, Cursor 등 MCP 지원 AI 도구에서 YouTube 댓글 네트워크 분석 결과를 직접 조회할 수 있습니다.
pip install networklytics-mcp
~/.claude/claude_desktop_config.json 또는 %APPDATA%\Claude\claude_desktop_config.json에 추가:
{
"mcpServers": {
"networklytics": {
"command": "networklytics-mcp",
"env": {
"NETWORKLYTICS_API_URL": "https://networklytics.net",
"NETWORKLYTICS_API_KEY": "nly_your_api_key_here"
}
}
}
}
API 키는 NetworkLytics 계정 설정 페이지에서 발급받을 수 있습니다.
Claude에서 다음과 같이 요청할 수 있습니다:
| Tool | 설명 | 인증 |
|---|---|---|
get_shared_analysis | 공유 링크 토큰으로 분석 결과 조회 | 불필요 |
get_analysis_by_id | 분석 ID로 결과 조회 | API 키 필요 |
get_api_info | API 정보 및 엔드포인트 목록 | 불필요 |
{
"video": { "title": "...", "channel": "...", "view_count": 123456 },
"network": {
"total_nodes": 1500,
"total_edges": 3200,
"density": 0.003,
"community_count": 7
},
"sentiment": {
"positive_ratio": 0.62,
"negative_ratio": 0.15,
"overall": "positive"
},
"top_influencers": [
{ "author": "username", "degree_centrality": 0.12, "comment_count": 45 }
],
"topic_keywords": ["키워드1", "키워드2"],
"ai_insights": { ... }
}
Run Claude Code as an MCP server so any agent can delegate coding tasks to it
Browser automation using accessibility snapshots instead of screenshots
MCP server integration for DaVinci Resolve Studio
A Jetbrains IDE IntelliJ plugin aimed to provide coding agents the ability to leverage intelliJ's indexing of the codeba