MCP Hub
Back to servers

datalikers-mcp

Requires Setup

MCP server for DataLikers — Instagram & TikTok data API for AI assistants

npm235/wk
Stars
4
Updated
Apr 20, 2026
Validated
Apr 29, 2026

Quick Install

npx -y datalikers-mcp

DataLikers MCP Server

npm version npm downloads License: MIT

MCP server for DataLikers — access Instagram & TikTok data directly from Claude, Cursor, and other AI assistants. Available on npm: datalikers-mcp.

Get 100 Free API Requests

Sign up with this link and get 100 free DataLikers requests — no credit card required. Enough to wire up the MCP server, try a few prompts in Claude/Cursor/Codex, and evaluate the data quality before committing.

Get your free 100 requests here

DataLikers MCP server

What is DataLikers?

DataLikers is an Instagram & TikTok data API platform. Search users by demographics, analyze engagement, explore hashtags, and more — all through a simple API. From $0.0003 per request.

Available Tools (29)

Users (10 tools)

ToolDescription
get_user_by_usernameGet user profile by Instagram username
get_user_by_idGet user profile by Instagram ID
search_usersSearch for users by query
get_users_by_hashtagFind users associated with a hashtag
get_users_by_locationFind users by location
get_top_usersGet top users by followers
get_business_usersGet business accounts by category
search_users_by_demographicsSearch by gender, age, race, emotion, country, city, and more
get_user_photoGet user profile photo (returns actual image)
get_user_engagementGet average likes/comments per post

Media & Posts (4 tools)

ToolDescription
get_user_mediasGet user's posts and reels
get_top_mediasGet top posts by likes or comments
search_media_captionsSearch posts by caption text
get_media_by_codeGet post by Instagram shortcode

Comments (2 tools)

ToolDescription
get_comments_by_userGet comments left by a user
search_commentsSearch comments by text

Hashtags (3 tools)

ToolDescription
get_hashtag_infoGet hashtag details and post count
search_hashtagsSearch hashtags by query
get_top_hashtagsGet trending hashtags

Locations (2 tools)

ToolDescription
get_location_infoGet location details
search_locationsSearch locations by name

Stories & Highlights (4 tools)

ToolDescription
get_user_storiesGet user's active stories
get_story_by_idGet a specific story
get_user_highlightsGet user's highlights
get_highlight_by_idGet a specific highlight

Music (3 tools)

ToolDescription
search_tracksSearch music tracks used in reels
get_track_by_idGet track details
get_top_tracksGet trending tracks

Analytics (1 tool)

ToolDescription
get_statsGet database statistics (total users, posts, comments, etc.)

Quick Start

  1. Get your API key at datalikers.com
  2. Install in your AI assistant (see below)
  3. Ask Claude: "Find Instagram users in New York with 10k+ followers"

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "datalikers": {
      "command": "npx",
      "args": ["-y", "datalikers-mcp"],
      "env": {
        "DATALIKERS_API_KEY": "your-api-key"
      }
    }
  }
}

Claude Code

claude mcp add datalikers -- npx -y datalikers-mcp \
  --env DATALIKERS_API_KEY=your-api-key

Cursor

Add to Cursor MCP settings (.cursor/mcp.json):

{
  "mcpServers": {
    "datalikers": {
      "command": "npx",
      "args": ["-y", "datalikers-mcp"],
      "env": {
        "DATALIKERS_API_KEY": "your-api-key"
      }
    }
  }
}

Windsurf

Add to ~/.codeium/windsurf/mcp_config.json:

{
  "mcpServers": {
    "datalikers": {
      "command": "npx",
      "args": ["-y", "datalikers-mcp"],
      "env": {
        "DATALIKERS_API_KEY": "your-api-key"
      }
    }
  }
}

Configuration

Environment VariableDescriptionRequired
DATALIKERS_API_KEYYour DataLikers API keyYes
DATALIKERS_URLCustom server URL (for self-hosted instances)No

Development

git clone https://github.com/subzeroid/datalikers-mcp.git
cd datalikers-mcp
npm install
npm run build

Run tests:

DATALIKERS_API_KEY=your-key npm test

Tests without DATALIKERS_API_KEY will skip integration tests and only run unit tests.

How It Works

This is a thin proxy that connects to the DataLikers remote MCP server and exposes all its tools locally via stdio transport. No data processing happens locally — all requests are forwarded to the DataLikers API.

AI Assistant ←stdio→ datalikers-mcp ←https→ DataLikers API

License

MIT

Reviews

No reviews yet

Sign in to write a review