Driflyte▌

by serkan-ozal
Driflyte — Query and retrieve precise, topic-specific knowledge from recursively crawled and indexed web pages for fast,
Query and retrieve topic-specific knowledge from recursively crawled and indexed web pages
best for
- / AI assistants needing specific domain knowledge
- / Research requiring deep web content analysis
- / RAG workflows needing topic-specific grounding
capabilities
- / Query recursively crawled web pages by topic
- / Retrieve GitHub repository content and discussions
- / Search indexed documents with topic-aware filtering
- / Access deep-crawled content beyond surface-level pages
what it does
Query crawled and indexed web pages by topic to get specific knowledge for your AI assistant conversations. No registration required.
about
Driflyte is a community-built MCP server published by serkan-ozal that provides AI assistants with tools and capabilities via the Model Context Protocol. Driflyte — Query and retrieve precise, topic-specific knowledge from recursively crawled and indexed web pages for fast, It is categorized under search web, ai ml.
how to install
You can install Driflyte in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server supports remote connections over HTTP, so no local installation is required.
license
MIT
Driflyte is released under the MIT license. This is a permissive open-source license, meaning you can freely use, modify, and distribute the software.
readme
Driflyte MCP Server
MCP Server for Driflyte.
The Driflyte MCP Server exposes tools that allow AI assistants to query and retrieve topic-specific knowledge from recursively crawled and indexed web pages. With this MCP server, Driflyte acts as a bridge between diverse, topic-aware content sources (web, GitHub, and more) and AI-powered reasoning, enabling richer, more accurate answers.
What It Does
- Deep Web Crawling: Recursively follows links to crawl and index web pages.
- GitHub Integration: Crawls repositories, issues, and discussions.
- Extensible Resource Support: Future support planned for Slack, Microsoft Teams, Google Docs/Drive, Confluence, JIRA, Zendesk, Salesforce, and more.
- Topic-Aware Indexing: Each document is tagged with one or more topics, enabling targeted, topic-specific retrieval.
- Designed for RAG with RAG: The server itself is built with Retrieval-Augmented Generation (RAG) in mind, and it powers RAG workflows by providing assistants with high-quality, topic-specific documents as grounding context.
- Designed for AI with AI: The system is not just for AI assistants — it is also designed and evolved using AI itself, making it an AI-native component for intelligent knowledge retrieval.
Usage & Limits
- Free Access: Driflyte is currently free to use.
- No Signup Required: You can start using it immediately — no registration or subscription needed.
- Rate Limits: To ensure fair usage, requests are limited by IP:
100API requests per5minutes per IP address.
- Future changes to usage policies and limits may be introduced as new features and resource integrations become available.
Prerequisites
- Node.js 18+
- An AI assistant (with MCP client) like Cursor, Claude (Desktop or Code), VS Code, Windsurf, etc ...
Configurations
CLI Arguments
Driflyte MCP server supports the following CLI arguments for configuration:
--transport <stdio|streamable-http>- Configures the transport protocol (defaults tostdio).--port <number>– Configures the port number to listen on when usingstreamable-httptransport (defaults to3000).
Quick Start
This MCP server (using STDIO or Streamable HTTP transport) can be added to any MCP Client
like VS Code, Claude, Cursor, Windsurf Github Copilot via the @driflyte/mcp-server NPM package.
ChatGPT
- Navigate to
Settingsunder your profile and enableDeveloper Modeunder theConnectorsoption. - In the chat panel, click the
+icon, and from the dropdown, selectDeveloper Mode. You’ll see an option to add sources/connectors. - Enter the following MCP Server details and then click
Create:Name:DriflyteMCP Server URL:https://mcp.driflyte.com/openaiAuthentication:No authenticationTrust Setting: CheckI trust this application
See How to set up a remote MCP server and connect it to ChatGPT deep research and MCP server tools now in ChatGPT – developer mode for more info.
Claude Code
Run the following command. See Claude Code MCP docs for more info.
Local Server
claude mcp add driflyte -- npx -y @driflye/mcp-server
Remote Server
claude mcp add --transport http driflyte https://mcp.driflyte.com/mcp
Claude Desktop
Local Server
Add the following configuration into the claude_desktop_config.json file.
See the Claude Desktop MCP docs for more info.
{
"mcpServers": {
"driflyte": {
"command": "npx",
"args": ["-y", "@driflyte/mcp-server"]
}
}
}
Remote Server
Go to the Settings > Connectors > Add Custom Connector in the Claude Desktop and add the new MCP server with the following fields:
- Name:
Driflyte - Remote MCP server URL:
https://mcp.driflyte.com/mcp
Copilot Coding Agent
Add the following configuration to the mcpServers section of your Copilot Coding Agent configuration through
Repository > Settings > Copilot > Coding agent > MCP configuration.
See the Copilot Coding Agent MCP docs for more info.
Local Server
{
"mcpServers": {
"driflyte": {
"type": "local",
"command": "npx",
"args": ["-y", "@driflyte/mcp-server"]
}
}
}
Remote Server
{
"mcpServers": {
"driflyte": {
"type": "http",
"url": "https://mcp.driflyte.com/mcp"
}
}
}
Cursor
Add the following configuration into the ~/.cursor/mcp.json file (or .cursor/mcp.json in your project folder).
Or setup by 🖱️One Click Installation.
See the Cursor MCP docs for more info.
Local Server
{
"mcpServers": {
"driflyte": {
"command": "npx",
"args": ["-y", "@driflyte/mcp-server"]
}
}
}
Remote Server
{
"mcpServers": {
"driflyte": {
"url": "https://mcp.driflyte.com/mcp"
}
}
}
Gemini CLI
Add the following configuration into the ~/.gemini/settings.json file.
See the Gemini CLI MCP docs for more info.
Local Server
{
"mcpServers": {
"driflyte": {
"command": "npx",
"args": ["-y", "@driflyte/mcp-server"]
}
}
}
Remote Server
{
"mcpServers": {
"driflyte": {
"httpUrl": "https://mcp.driflyte.com/mcp"
}
}
}
Smithery
Run the following command. You can find your Smithery API key here. See the Smithery CLI docs for more info.
npx -y @smithery/cli install @serkan-ozal/driflyte-mcp-server --client <SMITHERY-CLIENT-NAME> --key <SMITHERY-API-KEY>
VS Code
Add the following configuration into the .vscode/mcp.json file.
Or setup by 🖱️One Click Installation.
See the VS Code MCP docs for more info.
Local Server
{
"mcp": {
"servers": {
"driflyte": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@driflyte/mcp-server"]
}
}
}
}
Remote Server
{
"mcp": {
"servers": {
"driflyte": {
"type": "http",
"url": "https://mcp.driflyte.com/mcp"
}
}
}
}
Windsurf
Add the following configuration into the ~/.codeium/windsurf/mcp_config.json file.
See the Windsurf MCP docs for more info.
Local Server
{
"mcpServers": {
"driflyte": {
"command": "npx",
"args": ["-y", "@driflyte/mcp-server"]
}
}
}
Remote Server
{
"mcpServers": {
"driflyte": {
"serverUrl": "https://mcp.driflyte.com/mcp"
}
}
}
Components
Tools
list-topics: Returns a list of topics for which resources (web pages, etc ...) have been crawled and content is available. This allows AI assistants to discover the most relevant and up-to-date subject areas currently indexed by the crawler.- Input Schema: No input parameter supported.
- Output Schema:
topics:Optinal:falseType:Array<string>Description: List of the supported topics.
search: Given a list of topics and a user question, this tool retrieves the top-K most relevant documents from the crawled content. It is designed to help AI assistants surface the most contextually appropriate and up-to-date information for a specific topic and query. This enables more informed and accurate responses based on real-world, topic-tagged web content.- Input Schema:
topicsOptinal:falseType:Array<string>Description: A list of one or more topic identifiers to constrain the search space. Only documents tagged with at least one of these topics will be considered.
queryOptinal:falseType:stringDescription: The natural language query or question for which relevant information is being sought. This will be used to rank documents by semantic relevance.
topKOptinal:trueType:numberDefault Value:10Min Value:1Max Value:30Description: The maximum number of relevant documents to return. Results are sorted by descending relevance score.
- Output Schema:
documents:Optional:falseType:Array<Document>Description: Matched documents to the search query.- Type:
Document:content- `
- Input Schema:
FAQ
- What is the Driflyte MCP server?
- Driflyte is a Model Context Protocol (MCP) server profile on explainx.ai. MCP lets AI hosts (e.g. Claude Desktop, Cursor) call tools and resources through a standard interface; this page summarizes categories, install hints, and community ratings.
- How do MCP servers relate to agent skills?
- Skills are reusable instruction packages (often SKILL.md); MCP servers expose live capabilities. Teams frequently combine both—skills for workflows, MCP for APIs and data. See explainx.ai/skills and explainx.ai/mcp-servers for parallel directories.
- How are reviews shown for Driflyte?
- This profile displays 10 aggregated ratings (sample rows for discoverability plus signed-in user reviews). Average score is about 4.5 out of 5—verify behavior in your own environment before production use.
Ratings
4.5★★★★★10 reviews- ★★★★★Shikha Mishra· Oct 10, 2024
Driflyte is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
- ★★★★★Piyush G· Sep 9, 2024
We evaluated Driflyte against two servers with overlapping tools; this profile had the clearer scope statement.
- ★★★★★Chaitanya Patil· Aug 8, 2024
Useful MCP listing: Driflyte is the kind of server we cite when onboarding engineers to host + tool permissions.
- ★★★★★Sakshi Patil· Jul 7, 2024
Driflyte reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
- ★★★★★Ganesh Mohane· Jun 6, 2024
I recommend Driflyte for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.
- ★★★★★Oshnikdeep· May 5, 2024
Strong directory entry: Driflyte surfaces stars and publisher context so we could sanity-check maintenance before adopting.
- ★★★★★Dhruvi Jain· Apr 4, 2024
Driflyte has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
- ★★★★★Rahul Santra· Mar 3, 2024
According to our notes, Driflyte benefits from clear Model Context Protocol framing — fewer ambiguous “AI plugin” claims.
- ★★★★★Pratham Ware· Feb 2, 2024
We wired Driflyte into a staging workspace; the listing’s GitHub and npm pointers saved time versus hunting across READMEs.
- ★★★★★Yash Thakker· Jan 1, 2024
Driflyte is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.