feat(module): mention mcp in llms.txt if detected - #327
Open
larbish wants to merge 3 commits into
Open
Conversation
Contributor
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Contributor
|
Thank you for following the naming conventions! 🙏 |
commit: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Advertise the MCP server in
/llms.txtwhennuxt-llmsis registered, so agents that discover a site throughllms.txtcan find its MCP endpoint without a hand-configured URL.Comes out of a broader Docus review (PR coming) to improve its
isAgenticnote: agentic audits keep asking for a discovery path, andllms.txtis the one that actually exists today (seems like the good option for thellmsxmcpnuxt combo)Changes
Nitro plugin (
runtime/server/plugins/llms.ts,module.ts)Registered only when
hasNuxtModule('nuxt-llms')andmcp.llms !== false. Appends one section through nuxt-llms' ownllms:generatehook, it stays the owner of the file.Built from
llms.domain+mcp.route,mcp.name,mcp.descriptionandmcp.browserRedirect.Docs (
advanced/llms-txt,getting-started/configuration,skills/manage-mcp)New page, llms option, and a skill section.
Tests (
test/llms.test.ts,test/llms-disabled.test.ts)E2E fixtures covering the generated section and the opt-out.
Aside fix
pnpm automd pointed at a nonexistent .github/automd.json (config is .config/automd.json), so both READMEs had drifted from snippets/features.md. Fixes the path and regenerates, which also restores two missing MCP Apps lines.