diff --git a/src/fetch/README.md b/src/fetch/README.md index 2c3e048927..49eb2ccf06 100644 --- a/src/fetch/README.md +++ b/src/fetch/README.md @@ -1,7 +1,8 @@ # Fetch MCP Server - +Source: [modelcontextprotocol/servers/src/fetch](https://github.com/modelcontextprotocol/servers/tree/main/src/fetch) + 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. > [!CAUTION] diff --git a/src/fetch/pyproject.toml b/src/fetch/pyproject.toml index e2d0d38d0c..0ed1ecd9bb 100644 --- a/src/fetch/pyproject.toml +++ b/src/fetch/pyproject.toml @@ -25,6 +25,11 @@ dependencies = [ "requests>=2.32.3", ] +[project.urls] +Homepage = "https://github.com/modelcontextprotocol/servers/tree/main/src/fetch" +Repository = "https://github.com/modelcontextprotocol/servers" +Issues = "https://github.com/modelcontextprotocol/servers/issues" + [project.scripts] mcp-server-fetch = "mcp_server_fetch:main" diff --git a/src/git/README.md b/src/git/README.md index c9ec3140be..2f99cc3344 100644 --- a/src/git/README.md +++ b/src/git/README.md @@ -1,7 +1,8 @@ # mcp-server-git: A git MCP server - +Source: [modelcontextprotocol/servers/src/git](https://github.com/modelcontextprotocol/servers/tree/main/src/git) + ## Overview 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. diff --git a/src/git/pyproject.toml b/src/git/pyproject.toml index ea46b1cfb2..b31962bd73 100644 --- a/src/git/pyproject.toml +++ b/src/git/pyproject.toml @@ -22,6 +22,11 @@ dependencies = [ "pydantic>=2.0.0", ] +[project.urls] +Homepage = "https://github.com/modelcontextprotocol/servers/tree/main/src/git" +Repository = "https://github.com/modelcontextprotocol/servers" +Issues = "https://github.com/modelcontextprotocol/servers/issues" + [project.scripts] mcp-server-git = "mcp_server_git:main" diff --git a/src/time/README.md b/src/time/README.md index 51107f51de..9959f5c486 100644 --- a/src/time/README.md +++ b/src/time/README.md @@ -1,7 +1,8 @@ # Time MCP Server - +Source: [modelcontextprotocol/servers/src/time](https://github.com/modelcontextprotocol/servers/tree/main/src/time) + 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. ### Available Tools diff --git a/src/time/pyproject.toml b/src/time/pyproject.toml index b498a07b4a..2d32274125 100644 --- a/src/time/pyproject.toml +++ b/src/time/pyproject.toml @@ -23,6 +23,11 @@ dependencies = [ "tzlocal>=5.3.1", ] +[project.urls] +Homepage = "https://github.com/modelcontextprotocol/servers/tree/main/src/time" +Repository = "https://github.com/modelcontextprotocol/servers" +Issues = "https://github.com/modelcontextprotocol/servers/issues" + [project.scripts] mcp-server-time = "mcp_server_time:main"