llmstxt-mcp
Click on "Install 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., "@llmstxt-mcp列出所有llms.txt文档"
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.
llmstxt-mcp
用于管理远程 llms.txt 文档的 MCP
当前提供 6 个工具:
add:新增一个 llms.txt,抓取成功后保存配置和文档。
edit:按 id 修改名称、URL 或简介;URL 变更时会重新抓取文档。
del:按 id 删除配置和本地文档目录。
list:列出所有 llms 的 id、name、url、description。
view:按 id 读取本地缓存的 llms.txt 内容,返回的文本里包含的绝对 URL 可通过
view_doc进一步获取。view_doc:按绝对 URL 抓取并返回 llms.txt 中链接到的文档内容。
开发
1. 安装
pnpm install2. 启动
pnpm dev3. 调试
在弹出的 MCP Inspector 跳时网页,选择 SSE 模式并连接,SSE 支持自动重连,更好支持本地开发调试,当然你也可以选择其他模式
4. 参数传递
stdio 模式,可以用
process.env获取 mcp 配置的 env 变量sse/streamable-http 模式,可以用封装的 ctx.get() 获取 mcp 配置的请求头,方便鉴权等
Related MCP server: mcp-llm
部署 Stdio
1. 打包
pnpm build2. 发布到 npm
pnpm publish3. MCP 配置
{
"mcpServers": {
"llmstxt-mcp": {
"type": "stdio",
"command": "npx",
"args": ["llmstxt-mcp"]
}
}
}部署 docker
1. Build
docker build -t llmstxt-mcp .2. Run the server
docker run -p 3000:3000 llmstxt-mcp
# 或启动 sse
docker run -p 4000:4000 llmstxt-mcp node sse.js3. MCP 配置
{
"mcpServers": {
"llmstxt-mcp": {
"type": "streamableHttp",
"url": "http://localhost:3000/mcp",
"headers": {
"API_KEY": "sk-123"
}
},
// 或 sse
"llmstxt-mcp": {
"type": "sse",
"url": "http://localhost:4000/mcp",
"headers": {
"API_KEY": "sk-123"
}
}
}
}Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityDmaintenanceMCP server for SecretiveShell/Awesome-llms-txt. Add documentation directly into your conversation via MCP resources.Last updated24MIT
- AlicenseBqualityCmaintenanceAn MCP server that provides LLMs access to other LLMsLast updated42979MIT
- AlicenseCqualityDmaintenanceMCP protocol server for managing multi-project Markdown documents, supporting project isolation and LLM tool integration.Last updated29414MIT
- Alicense-qualityDmaintenanceAn MCP server that exposes the llms.txt file and its referenced local or external resources from a project root to provide context for AI models. It automatically parses documentation links and URLs to make them accessible as additional MCP resources.Last updated1MIT
Related MCP Connectors
MCP server for AI dialogue using various LLM models via AceDataCloud
MCP server for GLM chat completions using Zhipu AI models via AceDataCloud
MCP server for accessing curated awesome list documentation
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/vitaleap/llmstxt-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server