proxy-spider-proxies-1

proxy-spider-proxies-1

4.0

The Proxy-Spider Proxies MCP Server provides a premium list of proxy servers updated daily in various formats.

The proxy-spider-proxies-1 MCP server is a comprehensive and reliable solution for accessing a premium list of proxy servers. It provides updated daily lists of HTTP and SOCKS proxies in various formats, including IP PORT txt, JSON, CSV, and XML. This service is designed to meet the needs of users who require high-quality proxy data that is consistently refreshed to ensure optimal performance and reliability.

Features

  • Reliable Proxy Lists: Access a premium list of proxy servers that are updated daily.
  • Multiple Formats: Proxy lists are available in IP PORT txt, JSON, CSV, and XML formats to accommodate various integration needs.
  • HTTP and SOCKS Proxies: Offers both HTTP and SOCKS proxy types, allowing flexible usage scenarios.

MCP Tools

  • /proxies.json: Retrieve the complete list of proxies.
  • /proxies.example.json: Provides a free sample of ten proxies.

Usage with Different Platforms

python

python
import requests

url = 'https://api.proxy-spider.com/proxies.json'
params = {
    'api_key': 'your_api_key',
    'order': 'best',
    'page': 1,
    'country_code': 'US',
    'response_time': 'fast',
    'type': 'HTTP',
    'limit': 100
}

response = requests.get(url, params=params)
proxies = response.json()
print(proxies)

nodejs

javascript
const axios = require('axios');

const url = 'https://api.proxy-spider.com/proxies.json';
const params = {
    api_key: 'your_api_key',
    order: 'best',
    page: 1,
    country_code: 'US',
    response_time: 'fast',
    type: 'HTTP',
    limit: 100
};

axios.get(url, { params })
    .then(response => {
        console.log(response.data);
    })
    .catch(error => {
        console.error(error);
    });