index
This project offers basic functionalities in JavaScript, primarily aimed at beginners. The code quality is decent, but due to its limited features, it may not be suitable for more advanced development.
GitHub Stars
0
User Rating
Not Rated
Favorites
0
Views
29
Forks
0
Issues
0
MCP Registry - Index
This repository contains the metadata index for MCP (Model Context Protocol) packages.
Each entry in entries/ is a JSON file with metadata for an MCP package, validated against the JSON Schema defined in schema/metadata.schema.json.
The dist/index.json file is generated by npm run build and contains the consolidated list of all entries.
How to send Your MCP to the Index
Want to add a new MCP package to the index? Follow these steps:
1. Create your entry
- Create a new JSON file in
entries/. - The filename must be unique in format
YYYY-MM-DDTHH:MM:SS.SSSZ.json(e.g.,2025-05-08T08:42:27.945Z.json). - Fill in the content according to the schema in
schema/metadata.schema.json.
2. Validate your entry
- Run the following command to make sure your file matches the schema:
npm run validate - Fix any errors reported by the validation.
3. Open your Pull Request (PR)
- Fork this repository and create a new branch.
- Add your JSON file to
entries/. - In the PR description, briefly explain your package and include:
- Package name
- Author
- Link to repository/documentation
- Wait for the team review.
Best Practices
- Always validate your file before opening the PR.
- Review the schema documentation to ensure all required fields are present.
- Use unique filenames to avoid conflicts.
- Be clear in your PR description.
Usage
- Clone the repository:
git clone https://github.com/registrymcp/index.git - Install dependencies:
npm install - Validate entries:
npm run validate - Build the index:
npm run build - Browse the registry:
See the file dist/index.v1.json
References
If you have questions, open an issue or contact the maintainers.
0
Followers
0
Repositories
0
Gists
0
Total Contributions
folderr-mcp-server is a server application built with JavaScript that automates file management and folder operations. It provides a simple API, allowing developers to easily manipulate the file system. While the documentation is well-organized, the feature set is somewhat limited, making it suitable as a learning resource for beginners but with constraints on practical usability.