YCombinator Tweet Search MCP Server
Enables OpenAI models to search YCombinator tweets using natural language queries via the Model Context Protocol.
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@YCombinator Tweet Search MCP ServerFind tweets about startup funding"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
YCombinator Tweet Search MCP Server
This Model Context Protocol (MCP) server provides a tool for searching through YCombinator tweets using natural language queries.
Setup
Environment Configuration
Create a
.envfile in the project root with:MCP_API_KEY=your_api_key_hereInstallation
Install dependencies:
npm installBuilding the Server
Compile TypeScript:
npm run buildRunning the Server
Start the server:
npm startFor development with stdio transport:
npm run dev:stdio
Related MCP server: hackernews-mcp
Using the Tweet Search Tool
The server provides a search_tweets tool that accepts natural language queries to search through YCombinator tweets.
Tool Parameters
{
"name": "search_tweets",
"params": {
"query": "your search query here"
}
}Example Queries
"startup funding"
"AI projects"
"YC companies"
"founder advice"
"demo day"
Response Format
The tool returns a formatted list of matching tweets with:
Date
Tweet type (RETWEETED, QUOTED, REPLIED_TO) if applicable
Tweet content
Integration with LLM Systems
This server implements the Model Context Protocol, making it compatible with:
Anthropic Claude
OpenAI models
Custom MCP clients
How It Works
Tweets are fetched from the configured GitHub URL
Each tweet is scored against the query using a relevance algorithm
Top 10 most relevant results are returned
Results include date, context (if it's a retweet, etc.), and content
Development
To modify the search algorithm, look at the calculateRelevanceScore function in src/client.ts.
To change the tweet formatting, modify the handleSearchTweets function in src/tools/tweets.ts.
This server cannot be deployed
Maintenance
Related MCP Connectors
Browse Hacker News feeds, threads, and user profiles with full-text search.
Hacker News MCP — search and retrieve stories from Hacker News
HN front-page, Algolia full-text search, and Show HN launch tracker.
X / Twitter public post, comment, reply, user, and search tools.
Related MCP Servers
- FlicenseDqualityDmaintenanceA lightweight toolkit that enables Claude to search Twitter with natural language queries and display results based on user intent, supporting features like tweet filtering, pagination, and flexible output formatting.121-
- AlicenseAqualityDmaintenanceEnables LLMs to search and read Hacker News posts and comments via the Algolia API.1MIT
- AlicenseNot gradedqualityCmaintenanceEnables searching and retrieving top stories and individual items from Hacker News, with access to scores, comments, authors, and timestamps.4 npmMIT
- AlicenseAqualityDmaintenanceProvides Hacker News tools with founder-research features for analyzing Show HN launches, Ask HN discussions, and extracting startup insights.14MIT