Skip to content

Commit

Permalink
feat: add new MCP server configuration for llm.txt files
Browse files Browse the repository at this point in the history
- Introduced a new entry for the MCP server that serves llm.txt files in the package-list.json.
- Updated the modelcontextprotocol-extractor.ts to include a new repository configuration for the community servers.

These changes enhance the functionality of the MCP by integrating support for additional server capabilities.
  • Loading branch information
michaellatman committed Dec 4, 2024
1 parent 9474cb8 commit a82c668
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
9 changes: 9 additions & 0 deletions packages/package-list.json
Original file line number Diff line number Diff line change
Expand Up @@ -241,5 +241,14 @@
"homepage": "https://github.com/tinybirdco/mcp-tinybird",
"license": "Apache 2.0",
"runtime": "python"
},
{
"name": "@mcp-get-community/server-llm-txt",
"description": "MCP server for serving llm.txt files",
"vendor": "Michael Latman (https://michaellatman.com)",
"sourceUrl": "https://github.com/mcp-get/community-servers/blob/main/src/server-llm-txt",
"homepage": "https://github.com/mcp-get/community-servers#readme",
"license": "MIT",
"runtime": "node"
}
]
6 changes: 6 additions & 0 deletions src/extractors/modelcontextprotocol-extractor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,12 @@ const REPOS: RepoConfig[] = [
branch: 'main',
packagePath: 'src',
runtime: 'mixed'
},
{
url: 'https://github.com/mcp-get/community-servers.git',
branch: 'main',
packagePath: 'src',
runtime: 'mixed'
}
];

Expand Down

0 comments on commit a82c668

Please sign in to comment.