MCP
Instagram MCP-Server
Instagram erreicht monatlich etwa 3 Milliarden Nutzer durch Fotos, Stories, Reels und Direktnachrichten, was es wichtig für Markengeschichten, Partnerschaften mit Kreatoren, Produktentdeckung und visuelles Marketing macht.
MCP Version: 1.0.0 9 MCP-Tools Authentifizierung
Basis-URL
https://mcp.pressmonitor.com/mcp Authentifizierung
MCP-Anrufe verwenden ebenfalls Bearer-Token über JSON-RPC 2.0-Anfragen.
Authorization: Bearer YOUR_TOKEN followers
Follower
Argumente
| Name | Typ | Erforderlich | Beschreibung |
|---|---|---|---|
| username_or_id_or_url | string | Ja | Benutzername oder ID oder URL |
| cursor | integer | Nein | Pagination-Cursor für die nächste Seite |
Code-Beispiele
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
Folgt
Argumente
| Name | Typ | Erforderlich | Beschreibung |
|---|---|---|---|
| username_or_id_or_url | string | Ja | Benutzername oder ID oder URL |
| cursor | integer | Nein | Pagination-Cursor für die nächste Seite |
Code-Beispiele
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-Beiträge
Argumente
| Name | Typ | Erforderlich | Beschreibung |
|---|---|---|---|
| hashtag | string | Ja | Hashtag |
| count | integer | Nein | Anzahl der zurückzugebenden Ergebnisse |
| cursor | integer | Nein | Pagination-Cursor für die nächste Seite |
Code-Beispiele
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
Informationen
Argumente
| Name | Typ | Erforderlich | Beschreibung |
|---|---|---|---|
| username_or_id_or_url | string | Ja | Benutzername oder ID oder URL |
| cursor | integer | Nein | Pagination-Cursor für die nächste Seite |
| include_about | string | Nein | Über einbeziehen |
| url_embed_safe | string | Nein | Sichere URL-Einbettung |
Code-Beispiele
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
Beitragsinformationen
Argumente
| Name | Typ | Erforderlich | Beschreibung |
|---|---|---|---|
| url_or_shortcode | string | Ja | URL oder Shortcode |
| cursor | integer | Nein | Pagination-Cursor für die nächste Seite |
| url_embed_safe | string | Nein | Sichere URL-Einbettung |
Code-Beispiele
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
Beiträge
Argumente
| Name | Typ | Erforderlich | Beschreibung |
|---|---|---|---|
| username_or_id_or_url | string | Ja | Benutzername oder ID oder URL |
| cursor | integer | Nein | Pagination-Cursor für die nächste Seite |
Code-Beispiele
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
Beitragssuche
Argumente
| Name | Typ | Erforderlich | Beschreibung |
|---|---|---|---|
| search_query | string | Ja | Suchanfrage |
| cursor | integer | Nein | Pagination-Cursor für die nächste Seite |
Code-Beispiele
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
Benutzersuchen
Argumente
| Name | Typ | Erforderlich | Beschreibung |
|---|---|---|---|
| search_query | string | Ja | Suchanfrage |
| cursor | integer | Nein | Pagination-Cursor für die nächste Seite |
Code-Beispiele
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
Kommentare
Argumente
stringintegerintegerCode-Beispiele