├── .github ├── dependabot.yml └── workflows │ └── rust.yml ├── .gitignore ├── Cargo.toml ├── LICENSE ├── README.md ├── examples ├── client │ ├── Cargo.toml │ └── src │ │ └── main.rs ├── file_system │ ├── Cargo.toml │ ├── README.md │ └── src │ │ └── main.rs └── knowledge_graph_memory │ ├── Cargo.toml │ └── src │ ├── main.rs │ ├── tool_set.rs │ └── types.rs └── src ├── client.rs ├── lib.rs ├── protocol.rs ├── server.rs ├── tools.rs ├── transport ├── mod.rs └── stdio.rs └── types.rs /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntigmaLabs/mcp-sdk/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/rust.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntigmaLabs/mcp-sdk/HEAD/.github/workflows/rust.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntigmaLabs/mcp-sdk/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntigmaLabs/mcp-sdk/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntigmaLabs/mcp-sdk/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntigmaLabs/mcp-sdk/HEAD/README.md -------------------------------------------------------------------------------- /examples/client/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntigmaLabs/mcp-sdk/HEAD/examples/client/Cargo.toml -------------------------------------------------------------------------------- /examples/client/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntigmaLabs/mcp-sdk/HEAD/examples/client/src/main.rs -------------------------------------------------------------------------------- /examples/file_system/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntigmaLabs/mcp-sdk/HEAD/examples/file_system/Cargo.toml -------------------------------------------------------------------------------- /examples/file_system/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntigmaLabs/mcp-sdk/HEAD/examples/file_system/README.md -------------------------------------------------------------------------------- /examples/file_system/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntigmaLabs/mcp-sdk/HEAD/examples/file_system/src/main.rs -------------------------------------------------------------------------------- /examples/knowledge_graph_memory/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntigmaLabs/mcp-sdk/HEAD/examples/knowledge_graph_memory/Cargo.toml -------------------------------------------------------------------------------- /examples/knowledge_graph_memory/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntigmaLabs/mcp-sdk/HEAD/examples/knowledge_graph_memory/src/main.rs -------------------------------------------------------------------------------- /examples/knowledge_graph_memory/src/tool_set.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntigmaLabs/mcp-sdk/HEAD/examples/knowledge_graph_memory/src/tool_set.rs -------------------------------------------------------------------------------- /examples/knowledge_graph_memory/src/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntigmaLabs/mcp-sdk/HEAD/examples/knowledge_graph_memory/src/types.rs -------------------------------------------------------------------------------- /src/client.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntigmaLabs/mcp-sdk/HEAD/src/client.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntigmaLabs/mcp-sdk/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/protocol.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntigmaLabs/mcp-sdk/HEAD/src/protocol.rs -------------------------------------------------------------------------------- /src/server.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntigmaLabs/mcp-sdk/HEAD/src/server.rs -------------------------------------------------------------------------------- /src/tools.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntigmaLabs/mcp-sdk/HEAD/src/tools.rs -------------------------------------------------------------------------------- /src/transport/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntigmaLabs/mcp-sdk/HEAD/src/transport/mod.rs -------------------------------------------------------------------------------- /src/transport/stdio.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntigmaLabs/mcp-sdk/HEAD/src/transport/stdio.rs -------------------------------------------------------------------------------- /src/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntigmaLabs/mcp-sdk/HEAD/src/types.rs --------------------------------------------------------------------------------