Skip to content
Closed
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 Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ HTTP = "cd3eb016-35fb-5094-929b-558a96fad6f3"
JSON = "682c06a0-de6a-54ab-a142-c8b1cf79cde6"
Logging = "56ddb016-857b-54e1-b83d-db4d58db5568"
Sockets = "6462fe0b-24de-5631-8697-dd941f90decc"
StructUtils = "ec057cc2-7a8d-4b58-b3b3-92acb9f63b42"
UUIDs = "cf7118a7-6976-5b1a-9a39-7adc72f591a4"

[weakdeps]
Expand All @@ -21,6 +22,7 @@ ModelContextProtocolOAuthExt = ["OAuth"]
HTTP = "1.11, 2"
JSON = "1"
OAuth = "2"
StructUtils = "2.8.2"
julia = "1.10"

[extras]
Expand Down
3 changes: 3 additions & 0 deletions src/ModelContextProtocol.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ module ModelContextProtocol

using HTTP
using JSON
using StructUtils: @defaults
using UUIDs

include("types.jl")
include("errors.jl")
Expand All @@ -10,6 +12,7 @@ include("discovery.jl")
include("auth.jl")
include("jsonrpc.jl")
include("server.jl")
include("static_server.jl")
include("client.jl")
include("apps.jl")

Expand Down
Loading
Loading