fastmcp 2.12.3__py3-none-any.whl → 2.12.4__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- fastmcp/cli/install/gemini_cli.py +0 -1
- fastmcp/cli/run.py +2 -2
- fastmcp/client/auth/oauth.py +49 -36
- fastmcp/client/client.py +12 -2
- fastmcp/contrib/mcp_mixin/README.md +2 -2
- fastmcp/experimental/utilities/openapi/schemas.py +31 -5
- fastmcp/server/auth/auth.py +3 -3
- fastmcp/server/auth/oauth_proxy.py +42 -12
- fastmcp/server/auth/oidc_proxy.py +348 -0
- fastmcp/server/auth/providers/auth0.py +174 -0
- fastmcp/server/auth/providers/aws.py +237 -0
- fastmcp/server/auth/providers/azure.py +6 -2
- fastmcp/server/auth/providers/descope.py +172 -0
- fastmcp/server/auth/providers/github.py +6 -2
- fastmcp/server/auth/providers/google.py +6 -2
- fastmcp/server/auth/providers/workos.py +6 -2
- fastmcp/server/context.py +7 -6
- fastmcp/server/http.py +1 -1
- fastmcp/server/middleware/logging.py +147 -116
- fastmcp/server/middleware/middleware.py +3 -2
- fastmcp/server/openapi.py +5 -1
- fastmcp/server/server.py +36 -31
- fastmcp/settings.py +27 -5
- fastmcp/tools/tool.py +4 -2
- fastmcp/utilities/json_schema.py +18 -1
- fastmcp/utilities/logging.py +66 -4
- fastmcp/utilities/mcp_server_config/v1/mcp_server_config.py +2 -1
- fastmcp/utilities/storage.py +204 -0
- fastmcp/utilities/tests.py +8 -6
- {fastmcp-2.12.3.dist-info → fastmcp-2.12.4.dist-info}/METADATA +120 -47
- {fastmcp-2.12.3.dist-info → fastmcp-2.12.4.dist-info}/RECORD +34 -29
- {fastmcp-2.12.3.dist-info → fastmcp-2.12.4.dist-info}/WHEEL +0 -0
- {fastmcp-2.12.3.dist-info → fastmcp-2.12.4.dist-info}/entry_points.txt +0 -0
- {fastmcp-2.12.3.dist-info → fastmcp-2.12.4.dist-info}/licenses/LICENSE +0 -0
|
@@ -2,20 +2,20 @@ fastmcp/__init__.py,sha256=KX2d8UjlyJdYwock62tYV7vJSRwyxzrjq-jnU6Gre_c,1544
|
|
|
2
2
|
fastmcp/exceptions.py,sha256=-krEavxwddQau6T7MESCR4VjKNLfP9KHJrU1p3y72FU,744
|
|
3
3
|
fastmcp/mcp_config.py,sha256=zbli5c8hcUfxOlqYFBJXbogpVlXwtnCuJjTg3oTfmtQ,11375
|
|
4
4
|
fastmcp/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
5
|
-
fastmcp/settings.py,sha256=
|
|
5
|
+
fastmcp/settings.py,sha256=R3X0opNREwb0bpZs__qDpIIoiqXpWd6hm2U42hh_DAM,13341
|
|
6
6
|
fastmcp/cli/__init__.py,sha256=Ii284TNoG5lxTP40ETMGhHEq3lQZWxu9m9JuU57kUpQ,87
|
|
7
7
|
fastmcp/cli/claude.py,sha256=Z2mNoOdfGNvPSZVhbS2n52Thu9fNCxtJwju1pnTaN7c,4546
|
|
8
8
|
fastmcp/cli/cli.py,sha256=s5uIEKGOhImfDZc74v2ZYYrN2WHNxRyy7ouo265sCcM,29041
|
|
9
|
-
fastmcp/cli/run.py,sha256=
|
|
9
|
+
fastmcp/cli/run.py,sha256=lN1N3TdAWV2pFEiPe08Pk6ZkePoyAXaJ3MRpApkXcyI,6882
|
|
10
10
|
fastmcp/cli/install/__init__.py,sha256=FUrwjMVaxONgz1qO7suzJNz1xosRfR3TOHlr3Z77JXA,797
|
|
11
11
|
fastmcp/cli/install/claude_code.py,sha256=pIZXHJFv4lqj5V7Wr55fTjj9YDjBu0PBMBxPm_ww7Ow,7756
|
|
12
12
|
fastmcp/cli/install/claude_desktop.py,sha256=1skMjy07Z_4iQ1rMKO1L3Jl5hGsTIz8xdZTNG1tV2H0,6939
|
|
13
13
|
fastmcp/cli/install/cursor.py,sha256=eXJcI3u36eDDmLVeq49pK0R3cWA_iAtpYdO45tPDEgg,10749
|
|
14
|
-
fastmcp/cli/install/gemini_cli.py,sha256=
|
|
14
|
+
fastmcp/cli/install/gemini_cli.py,sha256=rfKPn-lCMCvY9UpD6Q0ZnoCVMxfd-A5UD3DKuSLj-gY,7737
|
|
15
15
|
fastmcp/cli/install/mcp_json.py,sha256=7tYslUjbPMwWt1UoARJjnDRRFZjH_l1UWd5hNWwKA5c,5939
|
|
16
16
|
fastmcp/cli/install/shared.py,sha256=_1MNGCqf7BsAL6ntwA75wn86-0g-248ppQSAPQ8uTXk,5103
|
|
17
17
|
fastmcp/client/__init__.py,sha256=J-RcLU2WcnYnstXWoW01itGtAg7DEjvCsWyqQKQljoo,663
|
|
18
|
-
fastmcp/client/client.py,sha256=
|
|
18
|
+
fastmcp/client/client.py,sha256=HIYvw9E4ZTPDyW5VAnPTeFDAj7pHV9_VEYlqb8Vpy50,35791
|
|
19
19
|
fastmcp/client/elicitation.py,sha256=VNWgeBe2KipLp9mCc-6AApmfYAU1OlH9_3JdskfW_Wc,2521
|
|
20
20
|
fastmcp/client/logging.py,sha256=uIC9aWGKqgTbxhRqkMBlnYfYjtanC1fqyWbRu5FY6AY,1670
|
|
21
21
|
fastmcp/client/messages.py,sha256=NIPjt-5js_DkI5BD4OVdTf6pz-nGjc2dtbgt-vAY234,4329
|
|
@@ -26,7 +26,7 @@ fastmcp/client/sampling.py,sha256=TXRj1Fs9lOk1wukhaHhPS__HGqpTieXSq2Rasj1F-e0,18
|
|
|
26
26
|
fastmcp/client/transports.py,sha256=RLOqBKO8cphsbPC8FRk6hgrM_2yH2WyT6o5xmXf3DVI,38183
|
|
27
27
|
fastmcp/client/auth/__init__.py,sha256=4DNsfp4iaQeBcpds0JDdMn6Mmfud44stWLsret0sVKY,91
|
|
28
28
|
fastmcp/client/auth/bearer.py,sha256=MFEFqcH6u_V86msYiOsEFKN5ks1V9BnBNiPsPLHUTqo,399
|
|
29
|
-
fastmcp/client/auth/oauth.py,sha256=
|
|
29
|
+
fastmcp/client/auth/oauth.py,sha256=EEl5Td6wVvGFt_05Leh43-vvLSVnEspnuEYvE5CJGrA,16380
|
|
30
30
|
fastmcp/contrib/README.md,sha256=rKknYSI1T192UvSszqwwDlQ2eYQpxywrNTLoj177SYU,878
|
|
31
31
|
fastmcp/contrib/bulk_tool_caller/README.md,sha256=5aUUY1TSFKtz1pvTLSDqkUCkGkuqMfMZNsLeaNqEgAc,1960
|
|
32
32
|
fastmcp/contrib/bulk_tool_caller/__init__.py,sha256=xvGSSaUXTQrc31erBoi1Gh7BikgOliETDiYVTP3rLxY,75
|
|
@@ -37,7 +37,7 @@ fastmcp/contrib/component_manager/__init__.py,sha256=4bppVrCOSEepKmBRwVWN-ndu5BY
|
|
|
37
37
|
fastmcp/contrib/component_manager/component_manager.py,sha256=4R1FPVYjCr-j7Mn6OcbHH-psl9-JTdd1hgNZHasC52Y,6412
|
|
38
38
|
fastmcp/contrib/component_manager/component_service.py,sha256=QqJ4DgD8ppAEHopc_hn3Ir2HKs81wSyuCT7qFqW527E,8760
|
|
39
39
|
fastmcp/contrib/component_manager/example.py,sha256=N16OIHmQuR-LNEv7bkrv2rGdMs862Nc3AKKEPfw-6rU,1587
|
|
40
|
-
fastmcp/contrib/mcp_mixin/README.md,sha256=
|
|
40
|
+
fastmcp/contrib/mcp_mixin/README.md,sha256=3sXD33lY1Bf3xpjSHOL-JngAjl0n8mC2FwKbdrGIDwE,4280
|
|
41
41
|
fastmcp/contrib/mcp_mixin/__init__.py,sha256=aw9IQ1ssNjCgws4ZNt8bkdpossAAGVAwwjBpMp9O5ZQ,153
|
|
42
42
|
fastmcp/contrib/mcp_mixin/example.py,sha256=GnunkXmtG5hLLTUsM8aW5ZURU52Z8vI4tNLl-fK7Dg0,1228
|
|
43
43
|
fastmcp/contrib/mcp_mixin/mcp_mixin.py,sha256=q039j0OOwlflMLqpqEpniBf828LwIaeXkY7LPub3rRU,10171
|
|
@@ -57,7 +57,7 @@ fastmcp/experimental/utilities/openapi/formatters.py,sha256=1RCd8DwPU8_4uF51pj8Q
|
|
|
57
57
|
fastmcp/experimental/utilities/openapi/json_schema_converter.py,sha256=W_40IPyuYnstcYtGf--eyTquecmwpvFYBK0W-XQ7OAw,12921
|
|
58
58
|
fastmcp/experimental/utilities/openapi/models.py,sha256=tgqrHdTbiDfMjiaNVHW5ndbXJ5lg_sajK0S5u9JQL6A,2805
|
|
59
59
|
fastmcp/experimental/utilities/openapi/parser.py,sha256=nVlvQ7RV7q4az_hrcE8WfGI5GqREKb6mZ5ANMgDED08,33232
|
|
60
|
-
fastmcp/experimental/utilities/openapi/schemas.py,sha256=
|
|
60
|
+
fastmcp/experimental/utilities/openapi/schemas.py,sha256=FE7aSgk3285X1okCh1ILLTxboQ-FCeFLyYZZ_jfejVI,23349
|
|
61
61
|
fastmcp/prompts/__init__.py,sha256=An8uMBUh9Hrb7qqcn_5_Hent7IOeSh7EA2IUVsIrtHc,179
|
|
62
62
|
fastmcp/prompts/prompt.py,sha256=Uo6NorQlGP1lvJh5-qK8jAvi4Mp4yDWkB5V4pzXMQYw,14235
|
|
63
63
|
fastmcp/prompts/prompt_manager.py,sha256=mv3ge3vqNQNIPwVT8Tkr7IaBSflYBajpfxfTZLuHZiw,7807
|
|
@@ -67,35 +67,39 @@ fastmcp/resources/resource_manager.py,sha256=sDfMrAx1cl2sTaKrTYW3k6gxr_O0QmH18n9
|
|
|
67
67
|
fastmcp/resources/template.py,sha256=KljJyfeO6Q702woIKKr5C9ODK4ImebY2PyFgYbQP5rY,11188
|
|
68
68
|
fastmcp/resources/types.py,sha256=SiYNLnpXT-mHgNUrzqKUvXYUsY-V3gwJIrYdJfFwDDo,4868
|
|
69
69
|
fastmcp/server/__init__.py,sha256=bMD4aQD4yJqLz7-mudoNsyeV8UgQfRAg3PRwPvwTEds,119
|
|
70
|
-
fastmcp/server/context.py,sha256=
|
|
70
|
+
fastmcp/server/context.py,sha256=UAXqW2kx3_RTVXz-hQUt-oNpnL8RRhgJk6c3JSnaE0A,24568
|
|
71
71
|
fastmcp/server/dependencies.py,sha256=so60cBZc4QuiKP2Y4ajR_NPkIF5d_b5wp8U3-ZfZMEQ,3888
|
|
72
72
|
fastmcp/server/elicitation.py,sha256=gmP17CzLQVpGzU00Ks31TWxdS-OLL5wTX_W5xRzs1Cc,8777
|
|
73
|
-
fastmcp/server/http.py,sha256=
|
|
73
|
+
fastmcp/server/http.py,sha256=rh18KPgGMFdKExrVZ-tFFBvyaAoTf925tm_a9ZVV9eM,10668
|
|
74
74
|
fastmcp/server/low_level.py,sha256=LNmc_nU_wx-fRG8OEHdLPKopZpovcrWlyAxJzKss3TA,1239
|
|
75
|
-
fastmcp/server/openapi.py,sha256
|
|
75
|
+
fastmcp/server/openapi.py,sha256=vm8A8Qy-jzXuxILJs-nPOJLwU2yB0YHDqVpz2HX-AqM,42198
|
|
76
76
|
fastmcp/server/proxy.py,sha256=y9h-49PIBNRh03HI3HcrY_lL8AMbKv45fyr2mAz3Vyo,25734
|
|
77
|
-
fastmcp/server/server.py,sha256=
|
|
77
|
+
fastmcp/server/server.py,sha256=UTPqvfLWcYfn0d26uTsav_qwfNAXx-I9c9d_FXk0jus,90822
|
|
78
78
|
fastmcp/server/auth/__init__.py,sha256=GwoyosVxuWCPzFHaCnj6iFp9fulnp124G2gQfsnzcgc,695
|
|
79
|
-
fastmcp/server/auth/auth.py,sha256=
|
|
80
|
-
fastmcp/server/auth/oauth_proxy.py,sha256=
|
|
79
|
+
fastmcp/server/auth/auth.py,sha256=bZpgCXdjsdDLS2hreivKFUhPpCDJLC0_k-fJYH1Bg9A,13096
|
|
80
|
+
fastmcp/server/auth/oauth_proxy.py,sha256=FuRnA07EV7Jd9mvxO4m9qntiQLjv6RycYPj9k20Mbuc,43638
|
|
81
|
+
fastmcp/server/auth/oidc_proxy.py,sha256=HvgBPuEkcA3iLDEb_fH0kMIjgleWfIz5BftJ-LYdj1A,13047
|
|
81
82
|
fastmcp/server/auth/redirect_validation.py,sha256=Jlhela9xpTbw4aWnQ04A5Z-TW0HYOC3f9BMsq3NXx1Q,2000
|
|
82
83
|
fastmcp/server/auth/providers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
83
|
-
fastmcp/server/auth/providers/
|
|
84
|
+
fastmcp/server/auth/providers/auth0.py,sha256=A8jMqfz3o-RpOQ3-k70ad3JTN3YuWEwLYrlcBqdmlxw,6249
|
|
85
|
+
fastmcp/server/auth/providers/aws.py,sha256=PWqRgOgonL3HZXXNlMHruUBFSF3lficrMmJocjIC7K8,8921
|
|
86
|
+
fastmcp/server/auth/providers/azure.py,sha256=tprxHR6v9Ir8M-Fum3jxIFyguMVLgFawL6GGZirnos4,10158
|
|
84
87
|
fastmcp/server/auth/providers/bearer.py,sha256=iu4pUj7TF5pT1wPuAGzDuM6lt5WtzenBN3c0otUleQY,923
|
|
85
|
-
fastmcp/server/auth/providers/
|
|
86
|
-
fastmcp/server/auth/providers/
|
|
88
|
+
fastmcp/server/auth/providers/descope.py,sha256=-liMBDXP5W2TlaOhmiRF7_MHJF4TIh0Ga1ObGQRTi1U,6387
|
|
89
|
+
fastmcp/server/auth/providers/github.py,sha256=W-JtWTDpkJQeSZXrVgXA3yF-EL71OQ74vSDaC77n3nU,10793
|
|
90
|
+
fastmcp/server/auth/providers/google.py,sha256=HrVlvduWcGRAwFJfXoz-UvcHX0onBdx2TK661X4nP_Y,11967
|
|
87
91
|
fastmcp/server/auth/providers/in_memory.py,sha256=CFCfYWMIPUxHNF5Liqud6ksedbykKV-RILWZqTxh3MY,14245
|
|
88
92
|
fastmcp/server/auth/providers/jwt.py,sha256=hAV_QXIoD4wotW6iWm0k378_mjMtkwWVqWEp6Zc--HE,19525
|
|
89
|
-
fastmcp/server/auth/providers/workos.py,sha256=
|
|
93
|
+
fastmcp/server/auth/providers/workos.py,sha256=81iEjr7bebYWTcMs6uRoVy4iSQGpR77zCWLRPgcB2gQ,15640
|
|
90
94
|
fastmcp/server/middleware/__init__.py,sha256=vh5C9ubN6q-y5QND32P4mQ4zDT89C7XYK39yqhELNAk,155
|
|
91
95
|
fastmcp/server/middleware/error_handling.py,sha256=SoDatr9i3T2qSIUbSEGWrOnu4WPPyMDymnsF5GR_BiE,7572
|
|
92
|
-
fastmcp/server/middleware/logging.py,sha256=
|
|
93
|
-
fastmcp/server/middleware/middleware.py,sha256=
|
|
96
|
+
fastmcp/server/middleware/logging.py,sha256=z0S34sGb5WOWCdXYOD0InxsjykqxqRi-ubTTDGSFxrY,9177
|
|
97
|
+
fastmcp/server/middleware/middleware.py,sha256=JV0LuTYnSAxbRY0zwm2z3OSBGjwI9wWnFM8MdEmj0Qw,6147
|
|
94
98
|
fastmcp/server/middleware/rate_limiting.py,sha256=VTrCoQFmWCm0BxwOrNfG21CBFDDOKJT7IiSEjpJgmPA,7921
|
|
95
99
|
fastmcp/server/middleware/timing.py,sha256=lL_xc-ErLD5lplfvd5-HIyWEbZhgNBYkcQ74KFXAMkA,5591
|
|
96
100
|
fastmcp/server/sampling/handler.py,sha256=yjLzvxlGllE-EY4bc6djsijEmwMT24PCpV6vJl-sPcI,580
|
|
97
101
|
fastmcp/tools/__init__.py,sha256=vzqb-Y7Kf0d5T0aOsld-O-FA8kD7-4uFExChewFHEzY,201
|
|
98
|
-
fastmcp/tools/tool.py,sha256=
|
|
102
|
+
fastmcp/tools/tool.py,sha256=iG1OoOrml1U_m9NUOh_x6f5RYcprJdjjNnx1T5n-YsE,19885
|
|
99
103
|
fastmcp/tools/tool_manager.py,sha256=xOm5XFbygUg2cW8jIiwhsgAdUA14wDMoUIvkWKL3LOU,9186
|
|
100
104
|
fastmcp/tools/tool_transform.py,sha256=v5pgBddBacrryED_bSBOBe3jplInBE30W949_RxUzbA,38447
|
|
101
105
|
fastmcp/utilities/__init__.py,sha256=-imJ8S-rXmbXMWeDamldP-dHDqAPg_wwmPVz-LNX14E,31
|
|
@@ -105,16 +109,17 @@ fastmcp/utilities/components.py,sha256=ZZQuseI_880WjQZAXYPhCi70u8-bBANYgZHj1u67N
|
|
|
105
109
|
fastmcp/utilities/exceptions.py,sha256=7Z9j5IzM5rT27BC1Mcn8tkS-bjqCYqMKwb2MMTaxJYU,1350
|
|
106
110
|
fastmcp/utilities/http.py,sha256=1ns1ymBS-WSxbZjGP6JYjSO52Wa_ls4j4WbnXiupoa4,245
|
|
107
111
|
fastmcp/utilities/inspect.py,sha256=UYQtU1gT_4iKev9iDjFHor61dHdPGugDplUq2ZsQS40,15575
|
|
108
|
-
fastmcp/utilities/json_schema.py,sha256=
|
|
112
|
+
fastmcp/utilities/json_schema.py,sha256=jR-J_6IKVYe3VCwgrDLwiKJOGTdekvgbQJWXnEKJLHs,8824
|
|
109
113
|
fastmcp/utilities/json_schema_type.py,sha256=SX-qEZXC-sgUflOuIi3oi6jeCvIky3QS6m3Riihq6Xc,22273
|
|
110
|
-
fastmcp/utilities/logging.py,sha256=
|
|
114
|
+
fastmcp/utilities/logging.py,sha256=3peqa3ShgcxvuPrSE337dTLCtCyC16sn1iY2FBTFYko,3477
|
|
111
115
|
fastmcp/utilities/mcp_config.py,sha256=qATTXMGiYET-7PflOixQOgiw3aOizX-RlloRjAo7nwI,1796
|
|
112
116
|
fastmcp/utilities/openapi.py,sha256=mfkY2XfWAmAOlKexArlrmDdD0Tkdqcn4TshsATaxB_o,63304
|
|
113
|
-
fastmcp/utilities/
|
|
117
|
+
fastmcp/utilities/storage.py,sha256=tNjiBjwrsibwuN-iD0ZScq0v--tq1ESMhIRW2NK7U_8,6230
|
|
118
|
+
fastmcp/utilities/tests.py,sha256=Hnq4fBsYjoTR0X3Omg2x4_34g8HjIRg3LlPlyrnq1Oc,6473
|
|
114
119
|
fastmcp/utilities/types.py,sha256=dZ9dw5U1gAOJsERODSlVF1Ua6q7XBAQaD7SF2K_H38w,14751
|
|
115
120
|
fastmcp/utilities/mcp_server_config/__init__.py,sha256=qbfd0c6aBpi0_SVgwt4IQCQ9siqqxmr9PWSYGiPDJqE,791
|
|
116
121
|
fastmcp/utilities/mcp_server_config/v1/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
117
|
-
fastmcp/utilities/mcp_server_config/v1/mcp_server_config.py,sha256=
|
|
122
|
+
fastmcp/utilities/mcp_server_config/v1/mcp_server_config.py,sha256=bAkbUv1e7iFvX18qxp91l6NIDMnmRcLaYnroDKoyGOI,15372
|
|
118
123
|
fastmcp/utilities/mcp_server_config/v1/schema.json,sha256=uI7hQuF-sFDi4Zj5Quu5PeAPL6ZjDPifrt-pI0gKWTU,8504
|
|
119
124
|
fastmcp/utilities/mcp_server_config/v1/environments/__init__.py,sha256=Tkv0dmJ6tKKotOBo-tho09QVdvEjy37iBsvBbEwH0EA,256
|
|
120
125
|
fastmcp/utilities/mcp_server_config/v1/environments/base.py,sha256=FkrUsESEdW5akyn_FeR4tQB6Vlj7dO9VFcCj0YLCghQ,845
|
|
@@ -122,8 +127,8 @@ fastmcp/utilities/mcp_server_config/v1/environments/uv.py,sha256=UzexA4kxuABtb2B
|
|
|
122
127
|
fastmcp/utilities/mcp_server_config/v1/sources/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
123
128
|
fastmcp/utilities/mcp_server_config/v1/sources/base.py,sha256=KWunc5peDLFdSdLX8l3UI9SNxtN-KNq2FOXAZ7XD62c,980
|
|
124
129
|
fastmcp/utilities/mcp_server_config/v1/sources/filesystem.py,sha256=eFX47XNXz2oKHW8MZvx60dqyHkBxdg2FMOrHcyAS28g,8106
|
|
125
|
-
fastmcp-2.12.
|
|
126
|
-
fastmcp-2.12.
|
|
127
|
-
fastmcp-2.12.
|
|
128
|
-
fastmcp-2.12.
|
|
129
|
-
fastmcp-2.12.
|
|
130
|
+
fastmcp-2.12.4.dist-info/METADATA,sha256=ecD3cOe5aUKz5OdRsx_mEYQ_bVBwuX5gfcDhMYmrWus,19727
|
|
131
|
+
fastmcp-2.12.4.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
132
|
+
fastmcp-2.12.4.dist-info/entry_points.txt,sha256=ff8bMtKX1JvXyurMibAacMSKbJEPmac9ffAKU9mLnM8,44
|
|
133
|
+
fastmcp-2.12.4.dist-info/licenses/LICENSE,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
|
|
134
|
+
fastmcp-2.12.4.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|