MCP
인스타그램 MCP 서버
인스타그램은 사진, 스토리, 릴, 직접 메시지를 통해 약 30억 명의 월간 사용자를 대상으로 브랜드 스토리텔링, 크리에이터 파트너십, 제품 발견 및 비주얼 상거래에 중요한 플랫폼입니다.
MCP 버전: 1.0.0 9 MCP 도구 인증
기본 URL
https://mcp.pressmonitor.com/mcp 인증
MCP 호출은 JSON-RPC 2.0 요청을 통해 Bearer 토큰도 사용합니다.
Authorization: Bearer YOUR_TOKEN followers
팔로워
인수
| 이름 | 유형 | 필수 | 설명 |
|---|---|---|---|
| username_or_id_or_url | string | 예 | 사용자 이름 또는 ID 또는 URL |
| cursor | integer | 아니요 | 다음 페이지를 위한 페이지네이션 커서 |
코드 예제
curl -X POST "https://mcp.pressmonitor.com/mcp" -H "Authorization: Bearer YOUR_API_KEY" -H "x-subscription-id: YOUR_SUB_ID" -H "Content-Type: application/json" -d '{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "followers",
"arguments": {
"username_or_id_or_url": "VALUE"
}
},
"id": 1
}' following
팔로잉
인수
| 이름 | 유형 | 필수 | 설명 |
|---|---|---|---|
| username_or_id_or_url | string | 예 | 사용자 이름 또는 ID 또는 URL |
| cursor | integer | 아니요 | 다음 페이지를 위한 페이지네이션 커서 |
코드 예제
curl -X POST "https://mcp.pressmonitor.com/mcp" -H "Authorization: Bearer YOUR_API_KEY" -H "x-subscription-id: YOUR_SUB_ID" -H "Content-Type: application/json" -d '{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "following",
"arguments": {
"username_or_id_or_url": "VALUE"
}
},
"id": 1
}' hashtag_posts
해시태그 게시물
인수
| 이름 | 유형 | 필수 | 설명 |
|---|---|---|---|
| hashtag | string | 예 | 해시태그 |
| count | integer | 아니요 | 반환할 결과 수 |
| cursor | integer | 아니요 | 다음 페이지를 위한 페이지네이션 커서 |
코드 예제
curl -X POST "https://mcp.pressmonitor.com/mcp" -H "Authorization: Bearer YOUR_API_KEY" -H "x-subscription-id: YOUR_SUB_ID" -H "Content-Type: application/json" -d '{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "hashtag_posts",
"arguments": {
"hashtag": "VALUE"
}
},
"id": 1
}' info
정보
인수
| 이름 | 유형 | 필수 | 설명 |
|---|---|---|---|
| username_or_id_or_url | string | 예 | 사용자 이름 또는 ID 또는 URL |
| cursor | integer | 아니요 | 다음 페이지를 위한 페이지네이션 커서 |
| include_about | string | 아니요 | 소개 포함 |
| url_embed_safe | string | 아니요 | URL 임베드 안전 |
코드 예제
curl -X POST "https://mcp.pressmonitor.com/mcp" -H "Authorization: Bearer YOUR_API_KEY" -H "x-subscription-id: YOUR_SUB_ID" -H "Content-Type: application/json" -d '{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "info",
"arguments": {
"username_or_id_or_url": "VALUE"
}
},
"id": 1
}' post_info
게시물 정보
인수
| 이름 | 유형 | 필수 | 설명 |
|---|---|---|---|
| url_or_shortcode | string | 예 | URL 또는 단축 코드 |
| cursor | integer | 아니요 | 다음 페이지를 위한 페이지네이션 커서 |
| url_embed_safe | string | 아니요 | URL 임베드 안전 |
코드 예제
curl -X POST "https://mcp.pressmonitor.com/mcp" -H "Authorization: Bearer YOUR_API_KEY" -H "x-subscription-id: YOUR_SUB_ID" -H "Content-Type: application/json" -d '{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "post_info",
"arguments": {
"url_or_shortcode": "VALUE"
}
},
"id": 1
}' posts
게시물
인수
| 이름 | 유형 | 필수 | 설명 |
|---|---|---|---|
| username_or_id_or_url | string | 예 | 사용자 이름 또는 ID 또는 URL |
| cursor | integer | 아니요 | 다음 페이지를 위한 페이지네이션 커서 |
코드 예제
curl -X POST "https://mcp.pressmonitor.com/mcp" -H "Authorization: Bearer YOUR_API_KEY" -H "x-subscription-id: YOUR_SUB_ID" -H "Content-Type: application/json" -d '{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "posts",
"arguments": {
"username_or_id_or_url": "VALUE"
}
},
"id": 1
}' search_posts
게시물 검색
인수
| 이름 | 유형 | 필수 | 설명 |
|---|---|---|---|
| search_query | string | 예 | 검색 쿼리 |
| cursor | integer | 아니요 | 다음 페이지를 위한 페이지네이션 커서 |
코드 예제
curl -X POST "https://mcp.pressmonitor.com/mcp" -H "Authorization: Bearer YOUR_API_KEY" -H "x-subscription-id: YOUR_SUB_ID" -H "Content-Type: application/json" -d '{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "search_posts",
"arguments": {
"search_query": "VALUE"
}
},
"id": 1
}' search_users
사용자 검색
인수
| 이름 | 유형 | 필수 | 설명 |
|---|---|---|---|
| search_query | string | 예 | 검색 쿼리 |
| cursor | integer | 아니요 | 다음 페이지를 위한 페이지네이션 커서 |
코드 예제
curl -X POST "https://mcp.pressmonitor.com/mcp" -H "Authorization: Bearer YOUR_API_KEY" -H "x-subscription-id: YOUR_SUB_ID" -H "Content-Type: application/json" -d '{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "search_users",
"arguments": {
"search_query": "VALUE"
}
},
"id": 1
}'
comments
댓글
인수
stringintegerinteger코드 예제