Skip to content

Commit d992901

Browse files
authored
Add mcpName and repository fields for MCP registry (#3068)
Adds metadata required for registering servers in the MCP registry: - NPM servers (everything, filesystem, memory, sequentialthinking): Added mcpName and repository fields to package.json - PyPI servers (fetch, git, time): Added mcp-name comment to README.md Part of #3047
1 parent 2c6684d commit d992901

7 files changed

Lines changed: 26 additions & 0 deletions

File tree

src/everything/package.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,14 @@
33
"version": "0.6.2",
44
"description": "MCP server that exercises all the features of the MCP protocol",
55
"license": "MIT",
6+
"mcpName": "io.github.modelcontextprotocol/server-everything",
67
"author": "Anthropic, PBC (https://anthropic.com)",
78
"homepage": "https://modelcontextprotocol.io",
89
"bugs": "https://github.com/modelcontextprotocol/servers/issues",
10+
"repository": {
11+
"type": "git",
12+
"url": "https://github.com/modelcontextprotocol/servers.git"
13+
},
914
"type": "module",
1015
"bin": {
1116
"mcp-server-everything": "dist/index.js"

src/fetch/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Fetch MCP Server
22

3+
<!-- mcp-name: io.github.modelcontextprotocol/server-fetch -->
4+
35
A Model Context Protocol server that provides web content fetching capabilities. This server enables LLMs to retrieve and process content from web pages, converting HTML to markdown for easier consumption.
46

57
> [!CAUTION]

src/filesystem/package.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,14 @@
33
"version": "0.6.3",
44
"description": "MCP server for filesystem access",
55
"license": "MIT",
6+
"mcpName": "io.github.modelcontextprotocol/server-filesystem",
67
"author": "Anthropic, PBC (https://anthropic.com)",
78
"homepage": "https://modelcontextprotocol.io",
89
"bugs": "https://github.com/modelcontextprotocol/servers/issues",
10+
"repository": {
11+
"type": "git",
12+
"url": "https://github.com/modelcontextprotocol/servers.git"
13+
},
914
"type": "module",
1015
"bin": {
1116
"mcp-server-filesystem": "dist/index.js"

src/git/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# mcp-server-git: A git MCP server
22

3+
<!-- mcp-name: io.github.modelcontextprotocol/server-git -->
4+
35
## Overview
46

57
A Model Context Protocol server for Git repository interaction and automation. This server provides tools to read, search, and manipulate Git repositories via Large Language Models.

src/memory/package.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,14 @@
33
"version": "0.6.3",
44
"description": "MCP server for enabling memory for Claude through a knowledge graph",
55
"license": "MIT",
6+
"mcpName": "io.github.modelcontextprotocol/server-memory",
67
"author": "Anthropic, PBC (https://anthropic.com)",
78
"homepage": "https://modelcontextprotocol.io",
89
"bugs": "https://github.com/modelcontextprotocol/servers/issues",
10+
"repository": {
11+
"type": "git",
12+
"url": "https://github.com/modelcontextprotocol/servers.git"
13+
},
914
"type": "module",
1015
"bin": {
1116
"mcp-server-memory": "dist/index.js"

src/sequentialthinking/package.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,14 @@
33
"version": "0.6.2",
44
"description": "MCP server for sequential thinking and problem solving",
55
"license": "MIT",
6+
"mcpName": "io.github.modelcontextprotocol/server-sequential-thinking",
67
"author": "Anthropic, PBC (https://anthropic.com)",
78
"homepage": "https://modelcontextprotocol.io",
89
"bugs": "https://github.com/modelcontextprotocol/servers/issues",
10+
"repository": {
11+
"type": "git",
12+
"url": "https://github.com/modelcontextprotocol/servers.git"
13+
},
914
"type": "module",
1015
"bin": {
1116
"mcp-server-sequential-thinking": "dist/index.js"

src/time/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Time MCP Server
22

3+
<!-- mcp-name: io.github.modelcontextprotocol/server-time -->
4+
35
A Model Context Protocol server that provides time and timezone conversion capabilities. This server enables LLMs to get current time information and perform timezone conversions using IANA timezone names, with automatic system timezone detection.
46

57
### Available Tools

0 commit comments

Comments
 (0)