LLMDotfiles MCP Server
Scans GitHub-specific configuration files (like .github/copilot-instructions.md) to provide context and guidelines for AI assistants working with GitHub repositories.
Provides access to Cline-specific rules and configurations stored in .clinerules files and ~/Documents/Cline/Rules directory to enhance AI interactions.
Integrates with VS Code by scanning .vscode/rules directory to expose project-specific guidelines and configurations for AI assistants.
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., "@LLMDotfiles MCP Serverscan this project for AI configuration files"
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.
LLMDotfiles MCP Server
An MCP (Model Context Protocol) server for scanning AI-related dotfiles and configuration files, and expose them to the agent tool.
Overview
This MCP server provides access to a variety of dotfiles and configuration resources that help LLMs understand project context and guidelines. This is an experimental project that seek to detect and expose all the different rules, guidelines, settings and configuration files the different agentic extensions make use of. This also includes the llms.txt proposal.
Related MCP server: Codebase MCP
Installation
Requires NodeJS 18.x
Clone the project to any local folder you want.
Do a npm install or pnpm install to download the dependencies.
Use it as a project/workspace MCP server, this is an example config file for Claude Desktop:
{
"mcp": {
"LLMDotFiles": {
"command": "npm",
"args": [
"start"
],
"env": {
"ProjectPath": "<ABSOLUTE PROJECT PATH>",
"externalFolders": "<ABSOLUTE PATH TO EXTRA RULES>;<ANOTHER EXTRA PATH>"
},
"cwd": "<MCP SERVER INSTALLATION PATH>"
}
}
}It can work as a global server, but since the project path is required, can only serve one project/workspace at a time.
Resources API
This server implements the MCP Resources API to provide access to dotfiles:
List Resources: Automatically scans the project to find available dotfiles.
Read Resources: Access the content of specific dotfiles.
Read ALL Resources: returns the content of all the files detected by the server, concatenated in a single string.
Resource URIs
Resources are available using the file:/// URI scheme:
file:///{projectPath}/{filename}The bulk of all resources can be obtained using LLMfiles:/// URI scheme:
Files and Folders Scanned
Project Files
llms.txt
ai-instructions.md
project-context.md
.github/copilot-instructions.md
.continuerules
.clinerules
.roorules
.kilocoderules
Project Folders
.vscode/rules
.roo/rules
.kilocode/rules
.cursor/rules
.continue/rules
.windsurf/rules
External Folders
~/Documents/Cline/Rules
License
MIT
Maintenance
Related MCP Connectors
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
A Model Context Protocol server for Wix AI tools
The Mercado Pago MCP Server implements the Model Context Protocol to provide AI agents and LLMs with access to Mercado Pago's APIs and tools within compatible development environments. It acts as an intermediary that translates Mercado Pago resources into executable functions (tools) that AI applications can invoke to perform actions and automate flows. The server simplifies integration, enables using documentation to implement or improve code, and optimizes operations through natural language interactions without manual implementations.
Real-time planetary signal engine and Model Context Protocol (MCP) server for autonomous AI agents.
Related MCP Servers
- AlicenseBqualityFmaintenanceA Model Context Protocol server that enables LLMs to read, search, and analyze code files with advanced caching and real-time file watching capabilities.68 npm39MIT
- AlicenseBqualityDmaintenanceA Model Context Protocol server that enables AI agents to retrieve and understand entire codebases at once, providing tools to analyze local workspaces or remote GitHub repositories.315 npm84MIT
- AlicenseAqualityDmaintenanceA Model Context Protocol (MCP) server designed to easily dump your codebase context into Large Language Models (LLMs).13 npm3Apache 2.0
- AlicenseNot gradedqualityDmaintenanceA Model Context Protocol server that enables token-aware directory exploration and file analysis for LLMs, helping them understand codebases through intelligent scanning and reporting.4MIT