SocialDataX Instagram MCP
Instagram MCP
此公共仓库提供由 SocialDataX 托管的 Instagram MCP 服务的公共连接文档和 MCP 元数据。
如果您正在寻找用于社交媒体研究流程的 Instagram MCP,本仓库包含:
公共 MCP 元数据和客户端配置示例
面向支持远程 MCP 的客户端的托管
streamable-http端点面向仅支持命令/stdio 的 MCP 客户端的
mcp-remote回退示例
业务实现为私有托管。本仓库仅公开社交媒体内容情报工作流的公共连接面。
搜索别名
此 MCP 服务的常见搜索词:
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
Related MCP server: instagram-mcp
服务
托管 MCP 端点:
https://mcp.socialdatax.com/instagram/mcp托管传输协议:
streamable-http身份验证:
Authorization: Bearer <SOCIALDATAX_API_KEY>产品:
SocialDataX/社媒数据助手网站和 API Key 获取:https://socialdatax.com/ai?from=github
注册表名称:
com.52choujiang/instagram-insights未来注册表名称:
com.socialdatax/instagram-insights当前公共能力版本:
0.1.5
平台 MCP
直接从支持带身份验证的远程 MCP 的客户端使用托管的 streamable-http 端点。对于仅支持命令/stdio MCP 服务器的客户端,请使用 mcp-remote 作为本地兼容代理。
工作流范围
此 MCP 服务专为社交媒体内容情报工作流设计。它不提供账户登录、发帖、编辑、点赞、评论、关注、直播或其他账户操作。
支持的工作流包括:
查询当前 API Key 账户的 SocialDataX 积分余额。
按关键词搜索公开的 Instagram 帖子;使用返回的
next_page_token作为page_token继续翻页。当调用方已拥有
post_id时读取帖子详情。将 Instagram 帖子分享 URL 解析为结构化帖子详情。
从 Instagram 帖子分享 URL 获取分页的一级评论;当仅有
post_id时,先调用instagram_get_post_detail_by_post_id并复用返回的share_url。通过
post_id和一级comment_id获取一级评论下的分页回复;直接使用用户提供有效的post_id和一级comment_id。如果缺少某个 ID 但有帖子 URL,则调用instagram_get_post_comments_by_post_url,然后复用同一条评论中的items[*].post_id和items[*].comment_id。如果仅有post_id,先调用instagram_get_post_detail_by_post_id获取share_url,再调用instagram_get_post_comments_by_post_url并复用目标一级评论的 ID。如果既没有帖子 URL 也没有post_id,请向用户询问帖子 URL 或 ID。通过
username或个人主页 URL 获取公开的 Instagram 用户信息。通过
username或个人主页 URL 获取 Instagram 用户发布的公开帖子的分页列表。提交并检查普通视频帖子和 Reels 的语音转文字转录任务;不支持照片和轮播帖子。
工具
工具 | 公开用途 |
| 查询当前 API Key 账户的 SocialDataX 积分余额。 |
| 按搜索词搜索公开的 Instagram 帖子。当用户需要通过搜索词查找帖子时使用此工具;当已有帖子链接时,使用对应的详情或评论工具;当仅有 |
| 当调用方已有 |
| 将 Instagram 帖子分享链接解析为结构化的帖子详情。 |
| 从 Instagram 帖子分享链接获取分页的一级评论。当仅有 |
| 通过 |
| 按用户名获取公开的 Instagram 用户信息。 |
| 按个人主页链接获取公开的 Instagram 用户信息。 |
| 按用户名获取 Instagram 用户发布的公开帖子(分页)。 |
| 按个人主页链接获取 Instagram 用户发布的公开帖子(分页)。 |
| 为 Instagram 视频帖子或 Reels 链接提交语音转文字转录任务。不支持照片和轮播帖子。 |
| 为 Instagram 视频帖子或 Reels 的 |
| 使用相同的 |
快速开始
对于支持认证 streamable-http 的客户端,可直接使用托管端点:
{
"mcpServers": {
"socialdatax-instagram": {
"type": "streamable_http",
"url": "https://mcp.socialdatax.com/instagram/mcp",
"headers": {
"Authorization": "Bearer <SOCIALDATAX_API_KEY>"
}
}
}
}配置模板见 examples/streamable_http_config.json。使用前请将 <SOCIALDATAX_API_KEY> 替换为你的 API Key。
对于仅支持命令/stdio 的 MCP 客户端,请使用 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 可以直接使用远程 HTTP:
claude mcp add --transport http socialdatax-instagram https://mcp.socialdatax.com/instagram/mcp --header 'Authorization: Bearer ${SOCIALDATAX_API_KEY}'在重启 Claude Code 之前,请将 SOCIALDATAX_API_KEY 持久化到运行时环境或客户端 Secret 中。
Claude Desktop 在可用时应使用其远程 MCP / Connectors 界面。如果你的版本中的本地配置文件仅支持命令/stdio 服务器,请使用 mcp-remote 作为后备方案。
客户端示例
配置示例见 examples:
API 密钥
请从产品官网申请或管理 API 访问权限:
https://socialdatax.com/ai?from=github
在 Authorization 请求头中使用该密钥作为 Bearer 令牌。切勿将真实的 API 密钥值提交到代码、文档、问题或截图中。
目录元数据
本仓库中的公共元数据文件:
server-card.json:托管服务的目录导向元数据。官方 MCP Registry 发布使用私有源仓库中的
registry/instagram/server.json作为当前com.52choujiang/instagram-insights条目。mcp.json:使用
mcp-remote的通用 command/stdio 回退配置。glama.json:Glama 仓库所有权元数据。
SUBMISSION_CHECKLIST.md:MCP 目录提交检查清单。
许可证
本公共仓库中的文件根据 MIT 许可证发布。该许可证仅涵盖本仓库中的公共文档和配置示例。它不涵盖托管服务实现、托管基础设施或本仓库之外的任何私有后端代码。
This server cannot be installed
Maintenance
Related MCP Servers
- FlicenseBqualityCmaintenanceProvides Instagram analytics, media downloads, and search capabilities through an MCP interface for use with Claude and other MCP clients.4340
- AlicenseNot gradedqualityCmaintenanceMCP server for organic Instagram analytics via the Meta Graph API, providing read-only tools for profiles, media, insights, audience, and optional publishing.GPL 3.0
- AlicenseAqualityBmaintenanceEnables MCP clients to look up public Instagram profiles by handle and page through their public post feeds, returning structured JSON data such as follower counts, bios, and engagement metrics.222MIT
- AlicenseNot gradedqualityCmaintenanceEnables retrieval and management of social media data from Instagram, TikTok, YouTube, X, and Facebook through MCP tools, supporting extractions, search, discovery, batches, schedules, and saved results.MIT
Related MCP Connectors
Public Instagram profiles and post feeds by handle, with hashtags and mentions parsed.
Social media MCP: publish, schedule & analyze posts on TikTok, Instagram, YouTube, LinkedIn & X
Instagram for AI agents: publish, read comments and DMs, insights, and engage from your account.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/DevinChen2014/instagram-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server