Skip to main content
Glama
README.md
> **⚠️ 서비스 운영 중단 안내**
> 현재 NetworkLytics 서버가 운영 중단 상태입니다.
> `NETWORKLYTICS_API_URL`을 로컬 서버 주소로 변경하면 로컬 환경에서는 사용 가능합니다.

---


# networklytics-mcp

[NetworkLytics](https://networklytics.net) MCP (Model Context Protocol) server.

Claude Desktop, Cursor 등 MCP 지원 AI 도구에서 YouTube 댓글 네트워크 분석 결과를 직접 조회할 수 있습니다.

## 설치

```bash
pip install networklytics-mcp
```

## Claude Desktop 설정

`~/.claude/claude_desktop_config.json` 또는 `%APPDATA%\Claude\claude_desktop_config.json`에 추가:

```json
{
  "mcpServers": {
    "networklytics": {
      "command": "networklytics-mcp",
      "env": {
        "NETWORKLYTICS_API_URL": "https://networklytics.net",
        "NETWORKLYTICS_API_KEY": "nly_your_api_key_here"
      }
    }
  }
}
```

API 키는 NetworkLytics 계정 설정 페이지에서 발급받을 수 있습니다.

## 사용 예시

Claude에서 다음과 같이 요청할 수 있습니다:

- "이 공유 링크 분석 결과를 보여줘: https://networklytics.net/shared/abc-123-..."
- "분석 결과에서 핵심 인플루언서 3명을 찾아줘"
- "이 YouTube 채널 댓글 커뮤니티의 감성 트렌드는 어때?"

## 제공 도구 (Tools)

| Tool | 설명 | 인증 |
|------|------|------|
| `get_shared_analysis` | 공유 링크 토큰으로 분석 결과 조회 | 불필요 |
| `get_analysis_by_id` | 분석 ID로 결과 조회 | API 키 필요 |
| `get_api_info` | API 정보 및 엔드포인트 목록 | 불필요 |

## 반환 데이터 구조

```json
{
  "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": { ... }
}
```

TDQS

B3.4/5.0

Scored across 3 tools

Disambiguation5/5

Each tool has a clearly distinct purpose: get_analysis_by_id retrieves a specific analysis by ID with authentication, get_api_info provides API metadata, and get_shared_analysis fetches public analysis from a share link. There is no overlap or ambiguity in their functions.

Naming Consistency5/5

All tools follow a consistent verb_noun pattern with snake_case (get_analysis_by_id, get_api_info, get_shared_analysis). The naming is predictable and uniform throughout the set.

Tool Count2/5

With only 3 tools, the set feels thin for a network analytics server. It lacks essential operations like creating, updating, or deleting analyses, which limits functionality and makes the server seem incomplete for its domain.

Completeness2/5

The server is severely incomplete for network analytics. It only provides retrieval and info tools, missing core operations such as initiating analyses, managing data, or performing CRUD actions. This will cause significant agent failures in handling typical workflows.

Maintenance

ActivityInactive
ResponsivenessUnresponsive