SocialDataX Instagram MCP
SocialDataX Instagram MCP,用于公开帖子、评论和回复、创作者个人资料和帖子,以及视频/Reels语音转文字转录。
文档
Instagram MCP
This public repository provides public connection docs and MCP metadata for a hosted Instagram MCP service by SocialDataX.
If you are looking for an Instagram MCP for social media research workflows, this repository includes:
- public MCP metadata and client configuration examples
- the hosted
streamable-httpendpoint for clients that support remote MCP - an
mcp-remotefallback example for command/stdio-only MCP clients
The business implementation is privately hosted. This repository exposes only the public connection surface for social media content intelligence workflows.
Search Aliases
Common search phrases for this MCP service:
Instagram MCPInstagram 数据 MCPInstagram data MCPInstagram 帖子 MCPInstagram 评论 MCPInstagram 回复 MCPInstagram 用户信息 MCPInstagram 用户帖子 MCPInstagram Reels transcript MCPInstagram 口播转文字 MCPInstagram post MCPInstagram post research MCPInstagram comments MCPInstagram comment replies MCPInstagram user info MCPInstagram user posts MCP
Service
- Hosted MCP endpoint:
https://mcp.socialdatax.com/instagram/mcp - Hosted transport:
streamable-http - Authentication:
Authorization: Bearer <SOCIALDATAX_API_KEY> - Product:
SocialDataX/社媒数据助手 - Website and API Key access: https://socialdatax.com/ai?from=github
- Registry name:
com.52choujiang/instagram-insights - Future registry name:
com.socialdatax/instagram-insights - Current public capability version:
0.1.5
Platform MCP
Use the hosted streamable-http endpoint directly from clients that support authenticated remote MCP. For clients that only support command/stdio MCP servers, use mcp-remote as a local compatibility proxy.
Workflow Scope
This MCP service is designed for social media content intelligence workflows. It does not provide account login, posting, editing, liking, commenting, following, live streaming, or other account actions.
Supported workflows include:
- Query the current API Key account's SocialDataX points balance.
- Search public Instagram posts by keyword; continue with the returned
next_page_tokenaspage_token. - Read post details when the caller already has a
post_id. - Resolve an Instagram post share URL into structured post details.
- Fetch paginated first-level comments from an Instagram post share URL; when only a
post_idis available, first callinstagram_get_post_detail_by_post_idand reuse the returnedshare_url. - Fetch paginated replies under a first-level comment by
post_idand first-levelcomment_id; use a validpost_idand first-levelcomment_idsupplied by the user directly. If an ID is missing and a post URL is available, callinstagram_get_post_comments_by_post_url, then reuseitems[*].post_idanditems[*].comment_idfrom the same comment. If onlypost_idis available, first callinstagram_get_post_detail_by_post_idto obtainshare_url, then callinstagram_get_post_comments_by_post_urland reuse the target first-level comment's IDs. If neither a post URL norpost_idis available, ask the user for the post URL or ID. - Fetch public Instagram user info by
usernameor profile URL. - Fetch paginated public posts published by an Instagram user by
usernameor profile URL. - Submit and check speech-to-text transcript jobs for ordinary video posts and Reels; photo and carousel posts are not supported.
Tools
| Tool | Public purpose |
|---|---|
socialdatax_get_points_balance | Query the current API Key account's SocialDataX points balance. |
instagram_search_posts | Search public Instagram posts by search term. Use this tool when the user needs posts found by a search term; when a post link is already available, use the corresponding detail or comment tool; when only a post_id is available, use the detail-by-ID tool, then use the returned share_url for comments; when a profile link or username is available, use the corresponding user info or user posts tool. Supports page_token continuation. |
instagram_get_post_detail_by_post_id | Fetch structured post details when the caller already has a post_id. |
instagram_get_post_detail_by_post_url | Resolve an Instagram post share URL into structured post details. |
instagram_get_post_comments_by_post_url | Fetch paginated first-level comments from an Instagram post share URL. When only a post_id is available, first call instagram_get_post_detail_by_post_id and reuse the returned share_url; pass page_token to continue pagination. |
instagram_get_post_comment_replies_by_comment_id | Fetch paginated replies under a first-level comment by post_id and first-level comment_id. Use a valid post_id and first-level comment_id supplied by the user directly. If an ID is missing and a post URL is available, call instagram_get_post_comments_by_post_url, then reuse items[*].post_id and items[*].comment_id from the same comment. If only post_id is available, first call instagram_get_post_detail_by_post_id to obtain share_url, then call instagram_get_post_comments_by_post_url and reuse the target first-level comment's IDs. If neither a post URL nor post_id is available, ask the user for the post URL or ID; pass page_token to continue pagination. |
instagram_get_user_info_by_username | Fetch public Instagram user info by username. |
instagram_get_user_info_by_profile_url | Fetch public Instagram user info by profile URL. |
instagram_get_user_posts_by_username | Fetch paginated public posts published by an Instagram user by username. |
instagram_get_user_posts_by_profile_url | Fetch paginated public posts published by an Instagram user by profile URL. |
instagram_submit_video_speech_text_by_post_url | Submit a speech-to-text transcript job for an Instagram video post or Reels URL. Photo and carousel posts are not supported. |
instagram_submit_video_speech_text_by_post_id | Submit a speech-to-text transcript job for an Instagram video post or Reels post_id. Photo and carousel posts are not supported. |
instagram_get_video_speech_text_job | Check the transcript job returned by an Instagram submit tool using the same job_id. |
Quick Start
For clients that support authenticated streamable-http, use the hosted endpoint directly:
{
"mcpServers": {
"socialdatax-instagram": {
"type": "streamable_http",
"url": "https://mcp.socialdatax.com/instagram/mcp",
"headers": {
"Authorization": "Bearer <SOCIALDATAX_API_KEY>"
}
}
}
}
A configuration template is available in examples/streamable_http_config.json. Replace <SOCIALDATAX_API_KEY> with your API Key before use.
For command/stdio-only MCP clients, use mcp-remote:
{
"mcpServers": {
"socialdatax-instagram": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://mcp.socialdatax.com/instagram/mcp",
"--header",
"Authorization: Bearer <SOCIALDATAX_API_KEY>"
]
}
}
}
Claude Code can use remote HTTP directly:
claude mcp add --transport http socialdatax-instagram https://mcp.socialdatax.com/instagram/mcp --header 'Authorization: Bearer ${SOCIALDATAX_API_KEY}'
Persist SOCIALDATAX_API_KEY in the runtime environment or client Secret before restarting Claude Code.
Claude Desktop should use its remote MCP / Connectors UI when available. If a local configuration file in your version only supports command/stdio servers, use the mcp-remote fallback.
Client Examples
Configuration examples are available in examples:
- Command/stdio fallback config
- Claude Desktop fallback config
- Cursor remote HTTP config
- Codex remote HTTP config
- Direct streamable HTTP config
API Key
Request or manage API access from the product website:
https://socialdatax.com/ai?from=github
Use the key as a Bearer token in the Authorization request header. Do not commit real API Key values to code, docs, issues, or screenshots.
Directory Metadata
Public metadata files in this repository:
- server-card.json: directory-oriented metadata for the hosted service. Official MCP Registry publishing uses the private source repo's
registry/instagram/server.jsonfor the currentcom.52choujiang/instagram-insightsentry. - mcp.json: generic command/stdio fallback config using
mcp-remote. - glama.json: Glama repository ownership metadata.
- SUBMISSION_CHECKLIST.md: checklist for MCP directory submissions.
License
The files in this public repository are released under the MIT License. The license covers the public documentation and configuration examples in this repository only. It does not cover the managed service implementation, hosted infrastructure, or any private backend code outside this repository.