aiohttp-mcp 0.0.1__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.
@@ -0,0 +1,31 @@
1
+ Metadata-Version: 2.4
2
+ Name: aiohttp-mcp
3
+ Version: 0.0.1
4
+ Summary: Tools for building Model Context Protocol (MCP) servers on top of aiohttp
5
+ Project-URL: Homepage, https://github.com/kulapard/aiohttp-mcp
6
+ Project-URL: Repository, https://github.com/kulapard/aiohttp-mcp.git
7
+ Project-URL: Documentation, https://github.com/kulapard/aiohttp-mcp#readme
8
+ Author-email: Taras Drapalyuk <taras@drapalyuk.com>
9
+ License-Expression: MIT
10
+ License-File: LICENSE
11
+ Keywords: ai,aiohttp,async,llm,mcp,model-context-protocol,server
12
+ Classifier: Development Status :: 3 - Alpha
13
+ Classifier: Intended Audience :: Developers
14
+ Classifier: License :: OSI Approved :: MIT License
15
+ Classifier: Programming Language :: Python :: 3
16
+ Classifier: Programming Language :: Python :: 3.8
17
+ Classifier: Programming Language :: Python :: 3.9
18
+ Classifier: Programming Language :: Python :: 3.10
19
+ Classifier: Programming Language :: Python :: 3.11
20
+ Classifier: Programming Language :: Python :: 3.12
21
+ Classifier: Programming Language :: Python :: 3.13
22
+ Classifier: Topic :: Internet :: WWW/HTTP :: HTTP Servers
23
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
24
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
25
+ Requires-Python: >=3.8
26
+ Requires-Dist: aiohttp>=3.9.0
27
+ Description-Content-Type: text/markdown
28
+
29
+ # aiohttp-mcp
30
+
31
+ Tools for building Model Context Protocol (MCP) servers on top of aiohttp.
@@ -0,0 +1,4 @@
1
+ aiohttp_mcp-0.0.1.dist-info/METADATA,sha256=k1j4RttJ4lXOWvbkG-3Ll9vhByOVwOGnV89eQgRHtKw,1385
2
+ aiohttp_mcp-0.0.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
3
+ aiohttp_mcp-0.0.1.dist-info/licenses/LICENSE,sha256=sc0B6Nn__4nT76t4RGR98c5CXx1Rl729UY24_UL2EI8,1072
4
+ aiohttp_mcp-0.0.1.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.27.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2024 Taras Drapalyuk
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.