This extension provides a Model Context Server for PostCrawl, enabling Zed AI Agent to search and extract content from Reddit and TikTok.
PostCrawl is a content extraction API specifically designed for Reddit and TikTok. This MCP server provides AI assistants with access to PostCrawl's powerful crawling capabilities for these two platforms.
The PostCrawl MCP server provides the following tools:
Search for posts across Reddit and TikTok.
- Parameters:
query
(string, required): Search querypage
(int, optional): Page number (default: 1)results
(int, optional): Number of results (default: 10)social_platforms
(string[], optional): Choose from ["reddit", "tiktok"]
Search for posts on Reddit and TikTok and extract their content in a single operation.
- Parameters: Same as search, plus:
response_mode
(string, optional): "raw" or "markdown" (default: "raw")include_comments
(boolean, optional): Include comments and replies (default: false)
Extract content from specific Reddit and TikTok URLs.
- Parameters:
urls
(string[], required): List of Reddit or TikTok URLs to extract content frominclude_comments
(boolean, optional): Include comments and replies (default: false)response_mode
(string, optional): "raw" or "markdown" (default: "raw")
Check the health status of the PostCrawl API.
- Parameters: None
This extension can be installed from the Zed extensions marketplace.
To configure PostCrawl MCP in Zed:
- Open Zed
settings.json
and add the following configuration:
{
"context_servers": {
"mcp-server-postcrawl": {
"settings": {
"postcrawl_api_key": "YOUR-API-KEY"
}
}
}
}
Replace YOUR-API-KEY
with your PostCrawl API key. If you don't have one yet, sign up at postcrawl.com to get your API key.
If you're using Zed's agent mode, you need to enable this context server for your assistant:
- Open Zed's assistant settings
- Enable the PostCrawl MCP server. If you see that the status of the tool is a red dot, make sure you added your PostCrawl API key in settings
- Enable the PostCrawl MCP server in the active assistant profile. In the chat section, click on the
Write | Ask
button, then click ontools
, then enable the PostCrawl MCP server.
Once configured, you can ask your Zed assistant to:
- "Search for posts about artificial intelligence on Reddit"
- "Extract content from this TikTok URL: [URL]"
- "Search for recent posts about climate change on both Reddit and TikTok"
- "Find trending TikTok videos about technology"
- "Check if the PostCrawl API is working"
For issues with the extension, please visit the GitHub repository.
For PostCrawl API support, visit postcrawl.com.
This extension is licensed under the MIT License.