Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 8 additions & 12 deletions mcp-registry/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ We welcome contributions! There are two ways to add your server to the registry:

### 1. Create a GitHub Issue (Easiest)

Simply create a [new GitHub issue](https://github.com/pathintegral-institute/mcp-registry/issues/new) with:
Simply create a [new GitHub issue](https://github.com/pathintegral-institute/mcpm.sh/issues/new) with:

- Title: "Add server: [your-server-name]"
- Body: URL to your server details or API documentation
Expand All @@ -54,26 +54,22 @@ Simply create a [new GitHub issue](https://github.com/pathintegral-institute/mcp
For more control over your submission:

1. Fork this repository
2. Create a new directory in `servers/` with your server name
3. Add your `manifest.json` following our [schema](schema/manifest-schema.json)
4. Submit a pull request

For detailed instructions, see the [Contributing Guidelines](CONTRIBUTING.md).
2. Create a JSON file in `mcp-registry/servers/` named `[your-server-name].json`. The JSON should follow our [schema](schema/server-schema.json)
3. Submit a pull request

## 📂 Registry Structure

```
mcp-registry/
├── README.md # Overview, usage instructions
├── CONTRIBUTING.md # Guidelines for contributing servers
├── servers/ # Directory containing all registered servers
│ ├── [server-name]/ # Directory for each server
├── manifest.json # Server metadata and configuration
└── README.md # Detailed server documentation
│ ├── [server-1-name].json # Server metadata and configuration
│ ├── [server-2-name].json
│ └── ...
└── schema/ # Schema definitions
└── manifest-schema.json # JSON Schema for manifest validation
└── server-schema.json # JSON Schema for server validation
```

## 📜 License

This registry is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
This registry is licensed under the MIT License - see the [LICENSE](../LICENSE) file for details.
Loading