Skip to content

Commit d16328e

Browse files
Rename mcp.json to server.json (#106)
<!-- Provide a brief summary of your changes --> Rename mcp.json to server.json ## Motivation and Context <!-- Why is this change needed? What problem does it solve? --> ## How Has This Been Tested? <!-- Have you tested this in a real application? Which scenarios were tested? --> ## Breaking Changes <!-- Will users need to update their code or configurations? --> ## Types of changes <!-- What types of changes does your code introduce? Put an `x` in all the boxes that apply: --> - [ ] Bug fix (non-breaking change which fixes an issue) - [ ] New feature (non-breaking change which adds functionality) - [ ] Breaking change (fix or feature that would cause existing functionality to change) - [ ] Documentation update ## Checklist <!-- Go over all the following points, and put an `x` in all the boxes that apply. --> - [ ] I have read the [MCP Documentation](https://modelcontextprotocol.io) - [ ] My code follows the repository's style guidelines - [ ] New and existing tests pass locally - [ ] I have added appropriate error handling - [ ] I have added or updated documentation as needed ## Additional context <!-- Add any other context, implementation notes, or design decisions --> Related to #86 Co-authored-by: Avinash Sridhar <[email protected]>
1 parent 3df06d3 commit d16328e

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.vscode/launch.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"program": "${workspaceFolder}/tools/publisher/main.go",
2222
"args": [
2323
"-registry-url=http://localhost:8080",
24-
"-mcp-file=${workspaceFolder}/tools/publisher/mcp.json",
24+
"-mcp-file=${workspaceFolder}/tools/publisher/server.json",
2525
],
2626
}
2727
]

tools/publisher/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ The tool has been simplified to use **GitHub OAuth device flow authentication ex
4747

4848
## Example
4949

50-
1. Prepare your `mcp.json` file with your server details:
50+
1. Prepare your `server.json` file with your server details:
5151

5252
```json
5353
{
@@ -90,7 +90,7 @@ The tool has been simplified to use **GitHub OAuth device flow authentication ex
9090
2. Run the publisher tool:
9191

9292
```bash
93-
./bin/mcp-publisher --registry-url "https://mcp-registry.example.com" --mcp-file "./mcp.json"
93+
./bin/mcp-publisher --registry-url "https://mcp-registry.example.com" --mcp-file "./server.json"
9494
```
9595

9696
3. Follow the authentication instructions in the terminal if prompted.
@@ -103,5 +103,5 @@ The tool has been simplified to use **GitHub OAuth device flow authentication ex
103103
- **Automatic Client ID**: The GitHub Client ID is automatically retrieved from the registry's health endpoint
104104
- **Token Storage**: The authentication token is saved in `.mcpregistry_token` in the current directory
105105
- **Internet Required**: Active internet connection needed for GitHub authentication and registry communication
106-
- **Repository Access**: Ensure the repository and package mentioned in your `mcp.json` file exist and are accessible
106+
- **Repository Access**: Ensure the repository and package mentioned in your `server.json` file exist and are accessible
107107
- **OAuth Permissions**: You may need to grant the OAuth app access to your GitHub organizations if publishing org repositories

tools/publisher/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ func publishToRegistry(registryURL string, mcpData []byte, token string) error {
8585
var mcpDetails map[string]interface{}
8686
err := json.Unmarshal(mcpData, &mcpDetails)
8787
if err != nil {
88-
return fmt.Errorf("error parsing mcp.json file: %w", err)
88+
return fmt.Errorf("error parsing server.json file: %w", err)
8989
}
9090

9191
// Create the publish request payload (without authentication)

0 commit comments

Comments
 (0)