Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 2 additions & 0 deletions src/fetch/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

<!-- mcp-name: io.github.modelcontextprotocol/server-fetch -->

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]
Expand Down
5 changes: 5 additions & 0 deletions src/fetch/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,11 @@ dependencies = [
[project.scripts]
mcp-server-fetch = "mcp_server_fetch:main"

[project.urls]
Repository = "https://github.com/modelcontextprotocol/servers"
Source = "https://github.com/modelcontextprotocol/servers/tree/main/src/fetch"
Issues = "https://github.com/modelcontextprotocol/servers/issues"

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
Expand Down
2 changes: 2 additions & 0 deletions src/git/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

<!-- mcp-name: io.github.modelcontextprotocol/server-git -->

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.
Expand Down
5 changes: 5 additions & 0 deletions src/git/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,11 @@ dependencies = [
[project.scripts]
mcp-server-git = "mcp_server_git:main"

[project.urls]
Repository = "https://github.com/modelcontextprotocol/servers"
Source = "https://github.com/modelcontextprotocol/servers/tree/main/src/git"
Issues = "https://github.com/modelcontextprotocol/servers/issues"

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
Expand Down
2 changes: 2 additions & 0 deletions src/time/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

<!-- mcp-name: io.github.modelcontextprotocol/server-time -->

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
Expand Down
5 changes: 5 additions & 0 deletions src/time/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,11 @@ dependencies = [
[project.scripts]
mcp-server-time = "mcp_server_time:main"

[project.urls]
Repository = "https://github.com/modelcontextprotocol/servers"
Source = "https://github.com/modelcontextprotocol/servers/tree/main/src/time"
Issues = "https://github.com/modelcontextprotocol/servers/issues"

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
Expand Down
Loading