MCP
इंस्टाग्राम MCP Server
इंस्टाग्राम लगभग 3 अरब मासिक उपयोगकर्ताओं तक पहुंचता है, जो फ़ोटो, कहानियों, रीलों और सीधे संदेशों के माध्यम से ब्रांड कहानी कहने, निर्माता साझेदारियों, उत्पाद पहचान और दृश्य वाणिज्य के लिए महत्वपूर्ण है।
MCP Version: 1.0.0 9 MCP Tools Authentication
Base URL
https://mcp.pressmonitor.com/mcp Authentication
MCP calls use Bearer tokens over JSON-RPC 2.0.
Authorization: Bearer YOUR_TOKEN followers
अनुयायी
Arguments
| Name | Type | Required | Description |
|---|---|---|---|
| username_or_id_or_url | string | Yes | उपयोगकर्ता नाम या आईडी या URL |
| cursor | integer | No | अगले पृष्ठ के लिए पेजिनेशन कर्सर |
Code Examples
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
अनुसरण कर रहे हैं
Arguments
| Name | Type | Required | Description |
|---|---|---|---|
| username_or_id_or_url | string | Yes | उपयोगकर्ता नाम या आईडी या URL |
| cursor | integer | No | अगले पृष्ठ के लिए पेजिनेशन कर्सर |
Code Examples
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
हैशटैग पोस्ट
Arguments
| Name | Type | Required | Description |
|---|---|---|---|
| hashtag | string | Yes | हैशटैग |
| count | integer | No | लौटाए जाने वाले परिणामों की संख्या |
| cursor | integer | No | अगले पृष्ठ के लिए पेजिनेशन कर्सर |
Code Examples
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
जानकारी
Arguments
| Name | Type | Required | Description |
|---|---|---|---|
| username_or_id_or_url | string | Yes | उपयोगकर्ता नाम या आईडी या URL |
| cursor | integer | No | अगले पृष्ठ के लिए पेजिनेशन कर्सर |
| include_about | string | No | के बारे में शामिल करें |
| url_embed_safe | string | No | URL एम्बेड सुरक्षित |
Code Examples
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
पोस्ट जानकारी
Arguments
| Name | Type | Required | Description |
|---|---|---|---|
| url_or_shortcode | string | Yes | URL या शॉर्टकोड |
| cursor | integer | No | अगले पृष्ठ के लिए पेजिनेशन कर्सर |
| url_embed_safe | string | No | URL एम्बेड सुरक्षित |
Code Examples
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
पोस्ट
Arguments
| Name | Type | Required | Description |
|---|---|---|---|
| username_or_id_or_url | string | Yes | उपयोगकर्ता नाम या आईडी या URL |
| cursor | integer | No | अगले पृष्ठ के लिए पेजिनेशन कर्सर |
Code Examples
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
पोस्ट खोजें
Arguments
| Name | Type | Required | Description |
|---|---|---|---|
| search_query | string | Yes | खोज क्वेरी |
| cursor | integer | No | अगले पृष्ठ के लिए पेजिनेशन कर्सर |
Code Examples
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
उपयोगकर्ता खोजें
Arguments
| Name | Type | Required | Description |
|---|---|---|---|
| search_query | string | Yes | खोज क्वेरी |
| cursor | integer | No | अगले पृष्ठ के लिए पेजिनेशन कर्सर |
Code Examples
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
टिप्पणियाँ
Arguments
stringintegerintegerCode Examples