Scrapecreators
FreeNot checkedMCP server for interacting with scrapecreators data service
About
MCP server for interacting with scrapecreators data service
README
A FastMCP server for the ScraperCreators platform that provides MCP tools and resources for content scraping operations.
Project Structure
src/mcp_server/- Core server implementationmain.py- FastMCP server with toolscli.py- CLI utility for version information
src/scrapecreator_api/- ScraperCreators API integrationreddit_search.py- Reddit Search API clientresponse_models.py- Response data models
test_server.py- Direct integration testsrun_server.sh- Script to start the server
Installation
# Create a virtual environment (optional but recommended)
python -m venv .venv
source .venv/bin/activate # On Windows: .venv\Scripts\activate
# Install the package and dependencies
pip install -e .
Development
# Install development dependencies
pip install -e ".[dev]"
# Run tests
pytest
Usage
Running the server
The project provides a FastMCP server that can be run using:
./run_server.sh
This uses the FastMCP CLI to run the server with the stdio transport.
Alternatively, you can run it directly with:
# Using Python
python -m src.mcp_server.main
# Using FastMCP CLI
fastmcp run src/mcp_server/main.py:mcp
Reddit Search API
The RedditSearch class provides a Python client for the ScrapeCreators Reddit Search API.
Basic Usage
from scrapecreator_api.reddit_search import RedditSearch
# Initialize with API key (or set REDDIT_API_KEY in .env.local)
client = RedditSearch(api_key="your_api_key")
# Basic search
results = client.search(query="python programming")
# Search with modifiers
results = client.search(
query="fastapi tutorial",
sort="new",
timeframe="week",
subreddit="learnpython",
self=True
)
# Search with pagination and limit
results = client.search_with_pagination(
query="data science",
limit=50
)
Search Parameters
query: Search keywords or phrasessort: Sort method (relevance,new,top,comment_count)timeframe: Time period (all,day,week,month,year)after: Pagination token from previous response- Modifiers:
author: Filter by authorsubreddit: Filter by subreddittitle: Search in titlesselftext: Search in post contentflair: Filter by post flairurl: Search in URLsself: Filter self posts (boolean)
Search Response Options
The API supports two response modes:
Inline Mode
Returns JSON response directly with optional result limiting:
response = client.search(
query="your query",
return_mode="inline",
max_results=10 # Optional limit
)
File Mode
Saves results to file and returns metadata:
response = client.search(
query="your query",
return_mode="file",
output_dir="/custom/path" # Optional custom directory
)
Both modes return a SearchResponse object containing:
success: Boolean indicating successcount: Number of posts foundposts: List of RedditPost objects (inline mode only)file_path: Path to saved JSON file (file mode only)
Error Handling
The client provides custom exceptions for different error scenarios:
RedditSearchError: Base exception classRedditSearchConnectionError: Connection issuesRedditSearchAuthenticationError: Invalid API keyRedditSearchAPIError: API response errors
Testing
The recommended way to test the server is through direct integration:
./test_client.sh
This runs a test that imports the MCP instance directly and tests the tools without requiring a separate server process. Based on the FastMCP quickstart guide, this is the most reliable approach for testing.
Available Tools
hello: Returns a greeting message with the given name
Notes
- The server instance is named
mcpinmain.pyto make it easily discoverable by the FastMCP CLI - For production use, consider using HTTP or other transports instead of stdio
- API keys should be stored in
.env.localfile or provided as environment variables
Installing Scrapecreators
This server has no published package — it is built from source. Open the repository and follow its README.
▸ github.com/adam-versed/scrapecreators-mcp-serverFAQ
Is Scrapecreators MCP free?
Yes, Scrapecreators MCP is free — one-click install via Unyly at no cost.
Does Scrapecreators need an API key?
No, Scrapecreators runs without API keys or environment variables.
Is Scrapecreators hosted or self-hosted?
Self-hosted: the server runs locally on your machine via the install command above.
How do I install Scrapecreators in Claude Desktop, Claude Code or Cursor?
Open Scrapecreators on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.
Related MCPs
GitHub
PRs, issues, code search, CI status
by GitHubFilesystem
Secure file operations with configurable access controls.
Memory
Knowledge graph-based persistent memory system.
Template MCP Server
A CLI tool to create a new Model Context Protocol server project with TypeScript support, dual transport options, and an extensible structure
by mcpdotdirectCompare Scrapecreators with
Not sure what to pick?
Find your stack in 60 seconds
Author?
Embed badge for your README
Browse similar
All development MCPs
