tiktok-captcha-solver2

tiktok-captcha-solver2

3.5

The TikTok Captcha Solver is a specialized MCP server designed to efficiently solve various types of TikTok captchas, including puzzle sliders, 3D object matching, and rotating whirls.

The TikTok Captcha Solver is a powerful tool specifically built to handle TikTok's captcha challenges. It provides solutions to three main types of captchas without making any direct requests to TikTok servers: Puzzle Captcha (Slider), 3D Objects Captcha, and Whirl Captcha (Rotating). The server is known for its reliability and efficiency, offering optimal performance with a 100% service level. It undergoes comprehensive testing to ensure accurate and effective solutions. Users can leverage this server for automated testing, research, or any other purpose requiring robust captcha-solving capabilities.

Features

  • High Popularity: Known for its reliability and efficiency, boasting high popularity among users.
  • Optimal Performance: Offers a 100% service level, ensuring consistent and dependable performance with minimal latency.
  • Comprehensive Testing: Undergoes rigorous testing to ensure its solutions are accurate and effective.

MCP Tools

  • Puzzle Captcha Solver: Solves the TikTok puzzle/slider captcha. The response includes the correct slider position to match the images.
  • 3D Captcha Solver: Solves the TikTok 3D captcha. The response includes the coordinates of the two identical 3D objects. Note that images must be base64 encoded.
  • Whirl Captcha Solver: Solves the TikTok whirl captcha. The response includes the correct slider position for the images to match.

Usage with Different Platforms

python

python
import requests

url = 'http://your-mcp-server-url/solve'
data = {
    'type': 'puzzle',
    'image': 'base64_encoded_image'
}
response = requests.post(url, json=data)
print(response.json())

nodejs

javascript
const axios = require('axios');

const url = 'http://your-mcp-server-url/solve';
const data = {
    type: 'puzzle',
    image: 'base64_encoded_image'
};

axios.post(url, data)
    .then(response => console.log(response.data))
    .catch(error => console.error(error));