├── .gitattributes
├── .github
├── pull_request_template.md
└── workflows
│ ├── claude.yml
│ ├── python.yml
│ ├── release.yml
│ └── typescript.yml
├── .gitignore
├── .mcp.json
├── .npmrc
├── CODE_OF_CONDUCT.md
├── CONTRIBUTING.md
├── LICENSE
├── README.md
├── SECURITY.md
├── package.json
├── scripts
└── release.py
├── src
├── everything
│ ├── CLAUDE.md
│ ├── Dockerfile
│ ├── README.md
│ ├── everything.ts
│ ├── index.ts
│ ├── instructions.md
│ ├── package.json
│ ├── sse.ts
│ ├── stdio.ts
│ ├── streamableHttp.ts
│ └── tsconfig.json
├── fetch
│ ├── .python-version
│ ├── Dockerfile
│ ├── LICENSE
│ ├── README.md
│ ├── pyproject.toml
│ ├── src
│ │ └── mcp_server_fetch
│ │ │ ├── __init__.py
│ │ │ ├── __main__.py
│ │ │ └── server.py
│ └── uv.lock
├── filesystem
│ ├── Dockerfile
│ ├── README.md
│ ├── __tests__
│ │ ├── directory-tree.test.ts
│ │ ├── lib.test.ts
│ │ ├── path-utils.test.ts
│ │ ├── path-validation.test.ts
│ │ └── roots-utils.test.ts
│ ├── index.ts
│ ├── lib.ts
│ ├── package.json
│ ├── path-utils.ts
│ ├── path-validation.ts
│ ├── roots-utils.ts
│ ├── tsconfig.json
│ └── vitest.config.ts
├── git
│ ├── .gitignore
│ ├── .python-version
│ ├── Dockerfile
│ ├── LICENSE
│ ├── README.md
│ ├── pyproject.toml
│ ├── src
│ │ └── mcp_server_git
│ │ │ ├── __init__.py
│ │ │ ├── __main__.py
│ │ │ ├── py.typed
│ │ │ └── server.py
│ ├── tests
│ │ └── test_server.py
│ └── uv.lock
├── memory
│ ├── Dockerfile
│ ├── README.md
│ ├── __tests__
│ │ ├── file-path.test.ts
│ │ └── knowledge-graph.test.ts
│ ├── index.ts
│ ├── package.json
│ ├── tsconfig.json
│ └── vitest.config.ts
├── sequentialthinking
│ ├── Dockerfile
│ ├── README.md
│ ├── __tests__
│ │ └── lib.test.ts
│ ├── index.ts
│ ├── lib.ts
│ ├── package.json
│ ├── tsconfig.json
│ └── vitest.config.ts
└── time
│ ├── .python-version
│ ├── Dockerfile
│ ├── README.md
│ ├── pyproject.toml
│ ├── src
│ └── mcp_server_time
│ │ ├── __init__.py
│ │ ├── __main__.py
│ │ └── server.py
│ ├── test
│ └── time_server_test.py
│ └── uv.lock
└── tsconfig.json
/.gitattributes:
--------------------------------------------------------------------------------
1 | package-lock.json linguist-generated=true
2 |
--------------------------------------------------------------------------------
/.github/pull_request_template.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/modelcontextprotocol/servers/HEAD/.github/pull_request_template.md
--------------------------------------------------------------------------------
/.github/workflows/claude.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/modelcontextprotocol/servers/HEAD/.github/workflows/claude.yml
--------------------------------------------------------------------------------
/.github/workflows/python.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/modelcontextprotocol/servers/HEAD/.github/workflows/python.yml
--------------------------------------------------------------------------------
/.github/workflows/release.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/modelcontextprotocol/servers/HEAD/.github/workflows/release.yml
--------------------------------------------------------------------------------
/.github/workflows/typescript.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/modelcontextprotocol/servers/HEAD/.github/workflows/typescript.yml
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/modelcontextprotocol/servers/HEAD/.gitignore
--------------------------------------------------------------------------------
/.mcp.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/modelcontextprotocol/servers/HEAD/.mcp.json
--------------------------------------------------------------------------------
/.npmrc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/modelcontextprotocol/servers/HEAD/.npmrc
--------------------------------------------------------------------------------
/CODE_OF_CONDUCT.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/modelcontextprotocol/servers/HEAD/CODE_OF_CONDUCT.md
--------------------------------------------------------------------------------
/CONTRIBUTING.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/modelcontextprotocol/servers/HEAD/CONTRIBUTING.md
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/modelcontextprotocol/servers/HEAD/LICENSE
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/modelcontextprotocol/servers/HEAD/README.md
--------------------------------------------------------------------------------
/SECURITY.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/modelcontextprotocol/servers/HEAD/SECURITY.md
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/modelcontextprotocol/servers/HEAD/package.json
--------------------------------------------------------------------------------
/scripts/release.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/modelcontextprotocol/servers/HEAD/scripts/release.py
--------------------------------------------------------------------------------
/src/everything/CLAUDE.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/modelcontextprotocol/servers/HEAD/src/everything/CLAUDE.md
--------------------------------------------------------------------------------
/src/everything/Dockerfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/modelcontextprotocol/servers/HEAD/src/everything/Dockerfile
--------------------------------------------------------------------------------
/src/everything/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/modelcontextprotocol/servers/HEAD/src/everything/README.md
--------------------------------------------------------------------------------
/src/everything/everything.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/modelcontextprotocol/servers/HEAD/src/everything/everything.ts
--------------------------------------------------------------------------------
/src/everything/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/modelcontextprotocol/servers/HEAD/src/everything/index.ts
--------------------------------------------------------------------------------
/src/everything/instructions.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/modelcontextprotocol/servers/HEAD/src/everything/instructions.md
--------------------------------------------------------------------------------
/src/everything/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/modelcontextprotocol/servers/HEAD/src/everything/package.json
--------------------------------------------------------------------------------
/src/everything/sse.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/modelcontextprotocol/servers/HEAD/src/everything/sse.ts
--------------------------------------------------------------------------------
/src/everything/stdio.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/modelcontextprotocol/servers/HEAD/src/everything/stdio.ts
--------------------------------------------------------------------------------
/src/everything/streamableHttp.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/modelcontextprotocol/servers/HEAD/src/everything/streamableHttp.ts
--------------------------------------------------------------------------------
/src/everything/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/modelcontextprotocol/servers/HEAD/src/everything/tsconfig.json
--------------------------------------------------------------------------------
/src/fetch/.python-version:
--------------------------------------------------------------------------------
1 | 3.11
2 |
--------------------------------------------------------------------------------
/src/fetch/Dockerfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/modelcontextprotocol/servers/HEAD/src/fetch/Dockerfile
--------------------------------------------------------------------------------
/src/fetch/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/modelcontextprotocol/servers/HEAD/src/fetch/LICENSE
--------------------------------------------------------------------------------
/src/fetch/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/modelcontextprotocol/servers/HEAD/src/fetch/README.md
--------------------------------------------------------------------------------
/src/fetch/pyproject.toml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/modelcontextprotocol/servers/HEAD/src/fetch/pyproject.toml
--------------------------------------------------------------------------------
/src/fetch/src/mcp_server_fetch/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/modelcontextprotocol/servers/HEAD/src/fetch/src/mcp_server_fetch/__init__.py
--------------------------------------------------------------------------------
/src/fetch/src/mcp_server_fetch/__main__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/modelcontextprotocol/servers/HEAD/src/fetch/src/mcp_server_fetch/__main__.py
--------------------------------------------------------------------------------
/src/fetch/src/mcp_server_fetch/server.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/modelcontextprotocol/servers/HEAD/src/fetch/src/mcp_server_fetch/server.py
--------------------------------------------------------------------------------
/src/fetch/uv.lock:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/modelcontextprotocol/servers/HEAD/src/fetch/uv.lock
--------------------------------------------------------------------------------
/src/filesystem/Dockerfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/modelcontextprotocol/servers/HEAD/src/filesystem/Dockerfile
--------------------------------------------------------------------------------
/src/filesystem/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/modelcontextprotocol/servers/HEAD/src/filesystem/README.md
--------------------------------------------------------------------------------
/src/filesystem/__tests__/directory-tree.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/modelcontextprotocol/servers/HEAD/src/filesystem/__tests__/directory-tree.test.ts
--------------------------------------------------------------------------------
/src/filesystem/__tests__/lib.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/modelcontextprotocol/servers/HEAD/src/filesystem/__tests__/lib.test.ts
--------------------------------------------------------------------------------
/src/filesystem/__tests__/path-utils.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/modelcontextprotocol/servers/HEAD/src/filesystem/__tests__/path-utils.test.ts
--------------------------------------------------------------------------------
/src/filesystem/__tests__/path-validation.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/modelcontextprotocol/servers/HEAD/src/filesystem/__tests__/path-validation.test.ts
--------------------------------------------------------------------------------
/src/filesystem/__tests__/roots-utils.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/modelcontextprotocol/servers/HEAD/src/filesystem/__tests__/roots-utils.test.ts
--------------------------------------------------------------------------------
/src/filesystem/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/modelcontextprotocol/servers/HEAD/src/filesystem/index.ts
--------------------------------------------------------------------------------
/src/filesystem/lib.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/modelcontextprotocol/servers/HEAD/src/filesystem/lib.ts
--------------------------------------------------------------------------------
/src/filesystem/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/modelcontextprotocol/servers/HEAD/src/filesystem/package.json
--------------------------------------------------------------------------------
/src/filesystem/path-utils.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/modelcontextprotocol/servers/HEAD/src/filesystem/path-utils.ts
--------------------------------------------------------------------------------
/src/filesystem/path-validation.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/modelcontextprotocol/servers/HEAD/src/filesystem/path-validation.ts
--------------------------------------------------------------------------------
/src/filesystem/roots-utils.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/modelcontextprotocol/servers/HEAD/src/filesystem/roots-utils.ts
--------------------------------------------------------------------------------
/src/filesystem/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/modelcontextprotocol/servers/HEAD/src/filesystem/tsconfig.json
--------------------------------------------------------------------------------
/src/filesystem/vitest.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/modelcontextprotocol/servers/HEAD/src/filesystem/vitest.config.ts
--------------------------------------------------------------------------------
/src/git/.gitignore:
--------------------------------------------------------------------------------
1 | __pycache__
2 | .venv
3 |
--------------------------------------------------------------------------------
/src/git/.python-version:
--------------------------------------------------------------------------------
1 | 3.10
2 |
--------------------------------------------------------------------------------
/src/git/Dockerfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/modelcontextprotocol/servers/HEAD/src/git/Dockerfile
--------------------------------------------------------------------------------
/src/git/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/modelcontextprotocol/servers/HEAD/src/git/LICENSE
--------------------------------------------------------------------------------
/src/git/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/modelcontextprotocol/servers/HEAD/src/git/README.md
--------------------------------------------------------------------------------
/src/git/pyproject.toml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/modelcontextprotocol/servers/HEAD/src/git/pyproject.toml
--------------------------------------------------------------------------------
/src/git/src/mcp_server_git/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/modelcontextprotocol/servers/HEAD/src/git/src/mcp_server_git/__init__.py
--------------------------------------------------------------------------------
/src/git/src/mcp_server_git/__main__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/modelcontextprotocol/servers/HEAD/src/git/src/mcp_server_git/__main__.py
--------------------------------------------------------------------------------
/src/git/src/mcp_server_git/py.typed:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/git/src/mcp_server_git/server.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/modelcontextprotocol/servers/HEAD/src/git/src/mcp_server_git/server.py
--------------------------------------------------------------------------------
/src/git/tests/test_server.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/modelcontextprotocol/servers/HEAD/src/git/tests/test_server.py
--------------------------------------------------------------------------------
/src/git/uv.lock:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/modelcontextprotocol/servers/HEAD/src/git/uv.lock
--------------------------------------------------------------------------------
/src/memory/Dockerfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/modelcontextprotocol/servers/HEAD/src/memory/Dockerfile
--------------------------------------------------------------------------------
/src/memory/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/modelcontextprotocol/servers/HEAD/src/memory/README.md
--------------------------------------------------------------------------------
/src/memory/__tests__/file-path.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/modelcontextprotocol/servers/HEAD/src/memory/__tests__/file-path.test.ts
--------------------------------------------------------------------------------
/src/memory/__tests__/knowledge-graph.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/modelcontextprotocol/servers/HEAD/src/memory/__tests__/knowledge-graph.test.ts
--------------------------------------------------------------------------------
/src/memory/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/modelcontextprotocol/servers/HEAD/src/memory/index.ts
--------------------------------------------------------------------------------
/src/memory/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/modelcontextprotocol/servers/HEAD/src/memory/package.json
--------------------------------------------------------------------------------
/src/memory/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/modelcontextprotocol/servers/HEAD/src/memory/tsconfig.json
--------------------------------------------------------------------------------
/src/memory/vitest.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/modelcontextprotocol/servers/HEAD/src/memory/vitest.config.ts
--------------------------------------------------------------------------------
/src/sequentialthinking/Dockerfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/modelcontextprotocol/servers/HEAD/src/sequentialthinking/Dockerfile
--------------------------------------------------------------------------------
/src/sequentialthinking/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/modelcontextprotocol/servers/HEAD/src/sequentialthinking/README.md
--------------------------------------------------------------------------------
/src/sequentialthinking/__tests__/lib.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/modelcontextprotocol/servers/HEAD/src/sequentialthinking/__tests__/lib.test.ts
--------------------------------------------------------------------------------
/src/sequentialthinking/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/modelcontextprotocol/servers/HEAD/src/sequentialthinking/index.ts
--------------------------------------------------------------------------------
/src/sequentialthinking/lib.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/modelcontextprotocol/servers/HEAD/src/sequentialthinking/lib.ts
--------------------------------------------------------------------------------
/src/sequentialthinking/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/modelcontextprotocol/servers/HEAD/src/sequentialthinking/package.json
--------------------------------------------------------------------------------
/src/sequentialthinking/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/modelcontextprotocol/servers/HEAD/src/sequentialthinking/tsconfig.json
--------------------------------------------------------------------------------
/src/sequentialthinking/vitest.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/modelcontextprotocol/servers/HEAD/src/sequentialthinking/vitest.config.ts
--------------------------------------------------------------------------------
/src/time/.python-version:
--------------------------------------------------------------------------------
1 | 3.10
2 |
--------------------------------------------------------------------------------
/src/time/Dockerfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/modelcontextprotocol/servers/HEAD/src/time/Dockerfile
--------------------------------------------------------------------------------
/src/time/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/modelcontextprotocol/servers/HEAD/src/time/README.md
--------------------------------------------------------------------------------
/src/time/pyproject.toml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/modelcontextprotocol/servers/HEAD/src/time/pyproject.toml
--------------------------------------------------------------------------------
/src/time/src/mcp_server_time/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/modelcontextprotocol/servers/HEAD/src/time/src/mcp_server_time/__init__.py
--------------------------------------------------------------------------------
/src/time/src/mcp_server_time/__main__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/modelcontextprotocol/servers/HEAD/src/time/src/mcp_server_time/__main__.py
--------------------------------------------------------------------------------
/src/time/src/mcp_server_time/server.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/modelcontextprotocol/servers/HEAD/src/time/src/mcp_server_time/server.py
--------------------------------------------------------------------------------
/src/time/test/time_server_test.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/modelcontextprotocol/servers/HEAD/src/time/test/time_server_test.py
--------------------------------------------------------------------------------
/src/time/uv.lock:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/modelcontextprotocol/servers/HEAD/src/time/uv.lock
--------------------------------------------------------------------------------
/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/modelcontextprotocol/servers/HEAD/tsconfig.json
--------------------------------------------------------------------------------