AgentStack
MCP verified MIT Self-run

Llms Mcp

mcp-druellan-llms-mcp · by druellan

An MCP (Model Context Protocol) server that exposes the `llms.txt` file from your project root as a resource for AI context enhancement.

No reviews yet
0 installs
4 views
0.0% view→install

Install

$ agentstack add mcp-druellan-llms-mcp

✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

Are you the author of Llms Mcp? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

llms-mcp

An MCP (Model Context Protocol) server that exposes the llms.txt file from your project root as a resource for AI context enhancement.

Overview

llms-mcp is a MCP server that looks for the llms.txt file in the root of your project directory and exposes it as a resource that can be consumed by MCP-compatible AI clients, based on the llms.txt proposed standard.

Features

  • Detection: Finds the llms.txt file in your project root
  • File Resource: Exposes the file via file:// URI for direct content access
  • Parsing: Extracts local file references and external URLs from llms.txt content. Automatically exposes referenced local files and external URLs as additional MCP resources.
  • Fetching: Can fetch external resources on-demand.

Installation

Prerequisites

  • Node.js >= 18.0.0

Setup

  1. Clone or download this repository
  2. Install dependencies:

``bash npm install ``

Usage

Running the Server

Start the MCP server:

npm start

Test Mode

Validate that the server can detect your llms.txt file:

npm test

This will scan your project directory and show if an llms.txt file is detected without starting the server.

Environment Configuration

The server uses the ProjectPath environment variable to determine the root directory to scan:

export ProjectPath="/path/to/your/project"
npm start
$env:projectPath = "/path/to/your/project"; npm start

MCP Client Configuration

Claude Desktop/Cline/Roo/Kilocode

Add this configuration to your Claude Desktop config file:

{
  "mcpServers": {
    "llms-mcp": {
      "command": "node",
      "args": ["path/to/llms-mcp/src/index.js"],
      "env": {
        "ProjectPath": "./"
      }
    }
  }
}

Referenced Resources

The server automatically parses the llms.txt content and exposes referenced files and URLs as additional resources:

Local Files:

  • Markdown-style file links: [text](file.ext)

External URLs:

  • HTTP/HTTPS URLs: https://example.com
  • URLs in markdown links: [text](https://example.com)

All local files are validated for existence before being exposed as resources. External URLs are exposed as-is and fetched on-demand when accessed.

License

MIT License - see LICENSE file for details.

Related Projects

Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet — be the first.

Versions

  • v0.1.0 Imported from the upstream source.