image-search-mcp 0.1.4__tar.gz → 0.1.5__tar.gz
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.
- {image_search_mcp-0.1.4 → image_search_mcp-0.1.5}/PKG-INFO +1 -1
- {image_search_mcp-0.1.4 → image_search_mcp-0.1.5}/pyproject.toml +1 -1
- {image_search_mcp-0.1.4 → image_search_mcp-0.1.5}/src/image_search_mcp/main.py +2 -2
- {image_search_mcp-0.1.4 → image_search_mcp-0.1.5}/src/image_search_mcp.egg-info/PKG-INFO +1 -1
- {image_search_mcp-0.1.4 → image_search_mcp-0.1.5}/README.md +0 -0
- {image_search_mcp-0.1.4 → image_search_mcp-0.1.5}/setup.cfg +0 -0
- {image_search_mcp-0.1.4 → image_search_mcp-0.1.5}/src/image_search_mcp/__init__.py +0 -0
- {image_search_mcp-0.1.4 → image_search_mcp-0.1.5}/src/image_search_mcp/server.py +0 -0
- {image_search_mcp-0.1.4 → image_search_mcp-0.1.5}/src/image_search_mcp.egg-info/SOURCES.txt +0 -0
- {image_search_mcp-0.1.4 → image_search_mcp-0.1.5}/src/image_search_mcp.egg-info/dependency_links.txt +0 -0
- {image_search_mcp-0.1.4 → image_search_mcp-0.1.5}/src/image_search_mcp.egg-info/entry_points.txt +0 -0
- {image_search_mcp-0.1.4 → image_search_mcp-0.1.5}/src/image_search_mcp.egg-info/requires.txt +0 -0
- {image_search_mcp-0.1.4 → image_search_mcp-0.1.5}/src/image_search_mcp.egg-info/top_level.txt +0 -0
|
@@ -54,10 +54,10 @@ def main():
|
|
|
54
54
|
async def handle_sse(scope, receive, send):
|
|
55
55
|
async with sse.connect_sse(scope, receive, send) as (read_stream, write_stream):
|
|
56
56
|
# Use the underlying server from FastMCP instance
|
|
57
|
-
await mcp.
|
|
57
|
+
await mcp.server.run(
|
|
58
58
|
read_stream,
|
|
59
59
|
write_stream,
|
|
60
|
-
mcp.
|
|
60
|
+
mcp.server.create_initialization_options()
|
|
61
61
|
)
|
|
62
62
|
|
|
63
63
|
starlette_app = Starlette(
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{image_search_mcp-0.1.4 → image_search_mcp-0.1.5}/src/image_search_mcp.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
{image_search_mcp-0.1.4 → image_search_mcp-0.1.5}/src/image_search_mcp.egg-info/entry_points.txt
RENAMED
|
File without changes
|
{image_search_mcp-0.1.4 → image_search_mcp-0.1.5}/src/image_search_mcp.egg-info/requires.txt
RENAMED
|
File without changes
|
{image_search_mcp-0.1.4 → image_search_mcp-0.1.5}/src/image_search_mcp.egg-info/top_level.txt
RENAMED
|
File without changes
|