{"id":27521162,"url":"https://github.com/jaimaann/mcprepository","last_synced_at":"2025-07-01T00:03:27.000Z","repository":{"id":287820845,"uuid":"965891347","full_name":"jaimaann/MCPRepository","owner":"jaimaann","description":"Open Source Repository for ModelContextProtocol MCP server","archived":false,"fork":false,"pushed_at":"2025-04-14T06:10:09.000Z","size":93189,"stargazers_count":7,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-07-01T00:03:25.659Z","etag":null,"topics":["mcp","mcp-server","modelcontextprotocol"],"latest_commit_sha":null,"homepage":"https://www.mcprepository.net","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jaimaann.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-04-14T04:37:01.000Z","updated_at":"2025-04-24T09:04:03.000Z","dependencies_parsed_at":"2025-04-18T07:59:54.360Z","dependency_job_id":null,"html_url":"https://github.com/jaimaann/MCPRepository","commit_stats":null,"previous_names":["jaimaann/mcprepository"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/jaimaann/MCPRepository","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jaimaann%2FMCPRepository","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jaimaann%2FMCPRepository/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jaimaann%2FMCPRepository/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jaimaann%2FMCPRepository/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jaimaann","download_url":"https://codeload.github.com/jaimaann/MCPRepository/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jaimaann%2FMCPRepository/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":262870852,"owners_count":23377309,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["mcp","mcp-server","modelcontextprotocol"],"created_at":"2025-04-18T07:59:15.197Z","updated_at":"2025-07-01T00:03:26.985Z","avatar_url":"https://github.com/jaimaann.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# [MCPRepository](https://mcprepository.net/)\n\n\u003cp align=\"center\"\u003e\n  \u003cimg src=\"public/icons/icon-192X192.png\" alt=\"MCPRepository Logo\" width=\"200\"/\u003e\n\u003c/p\u003e\n\nOpen Source Repository for ModelContextProtocol MCP server\n\n[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)\n[![Next.js](https://img.shields.io/badge/Next.js-15.3.0-black)](https://nextjs.org/)\n[![React](https://img.shields.io/badge/React-19.1.0-blue)](https://reactjs.org/)\n\n## Table of Contents\n\n- [Overview](#overview)\n- [Features](#features)\n- [Demo](#demo)\n- [Installation](#installation)\n- [Usage](#usage)\n- [Project Structure](#project-structure)\n- [Roadmap](#roadmap)\n- [How to Contribute](#how-to-contribute)\n- [License](#license)\n- [Acknowledgments](#acknowledgments)\n\n## Overview\n\nMCPRepository is an open-source Next.js project designed to centralize MCPServes. The key tenets of this project include:\n\n- Easing the discovery of MCP Servers\n- Simplifying the process of listing MCP Servers\n- Streamlining the installation of MCP Servers\n\n\n## Demo\n\nVisit the live demo at [https://mcprepository.net/](https://mcprepository.net)\n\n## Installation\n\n### Prerequisites\n\n- Node.js 18.x or higher\n- npm or yarn\n\n### Setup\n\n1. Clone the repository:\n   ```bash\n   git clone https://github.com/yourusername/MCPRepository.git\n   cd MCPRepository\n   ```\n\n2. Install dependencies:\n   ```bash\n   npm install\n   # or\n   yarn install\n   ```\n\n3. Create a `.env.local` file in the root directory:\n   ```\n   NEXT_PUBLIC_GA_ID=your-google-analytics-id\n   ```\n\n4. Start the development server:\n   ```bash\n   npm run dev\n   # or\n   yarn dev\n   ```\n\n5. Open [http://localhost:3000](http://localhost:3000) in your browser to see the application.\n\n## Usage\n\n### Development\n\n```bash\nnpm run dev\n# or\nyarn dev\n```\n\n### Building for Production\n\n```bash\nnpm run build\n# or\nyarn build\n```\n\n### Running in Production Mode\n\n```bash\nnpm run start\n# or\nyarn start\n```\n\n### Linting\n\n```bash\nnpm run lint\n# or\nyarn lint\n```\n\n## Project Structure\n\n```\nMCPRepository/\n├── public/             # Static assets\n├── src/\n│   ├── app/            # App router pages and layouts\n│   ├── components/     # Reusable React components\n│   ├── styles/         # Global styles\n│   └── lib/            # Utility functions and helpers\n├── .env.local          # Environment variables (create this file)\n├── next.config.js      # Next.js configuration\n├── tsconfig.json       # TypeScript configuration\n└── package.json        # Project dependencies and scripts\n```\n\n## Roadmap\n\nOur vision for MCPRepository includes:\n\n### Short-term Goals (Next 3 months)\n- [ ] Presently, MCP Server data is static, implement backend server\n- [ ] Implement ratings and comments section for MCP Servers\n- [ ] Create user profiles, siging and signup\n- [ ] Implement category\n- [ ] Implement Easy Installation Guide\n\n### Medium-term Goals (3-6 months)\n- [ ] Implement a desktop app to install/uninstall MCPServers with one click\n\n\n## How to Contribute\n\nWe welcome contributions from everyone! Here's how you can help:\n\n### Getting Started\n\n1. Fork the repository\n2. Create a new branch: `git checkout -b feature/your-feature-name`\n3. Make your changes\n4. Run tests and linting: `npm run lint`\n5. Commit your changes: `git commit -m 'Add some feature'`\n6. Push to the branch: `git push origin feature/your-feature-name`\n7. Submit a pull request\n\n### Contribution Guidelines\n\n- Follow the existing code style and conventions\n- Write clear, descriptive commit messages\n- Add unit tests for new features\n- Update documentation as needed\n- Make sure all tests pass before submitting PRs\n\n### Issues and Bug Reports\n\n- Use the GitHub Issues tab to report bugs or request features\n- Use clear and descriptive titles\n- Provide detailed steps to reproduce any bugs\n- Suggest possible solutions if you have ideas\n\n### Code of Conduct\n\nPlease be respectful and inclusive when contributing to this project. We expect all contributors to adhere to our code of conduct, which promotes a welcoming and harassment-free experience for everyone.\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n\n## Acknowledgments\n\n- Built with [Next.js](https://nextjs.org/)\n- UI components by [React](https://reactjs.org/)\n- Animations powered by [Framer Motion](https://www.framer.com/motion/)\n\n---\n\nMade with ❤️ by mcprepository.net\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjaimaann%2Fmcprepository","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjaimaann%2Fmcprepository","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjaimaann%2Fmcprepository/lists"}