-
Notifications
You must be signed in to change notification settings - Fork 94
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: use low_lever server for cognee mcp server (#470)
* fix: revert to older mcp version * fix: use low_level server for the mcp * fix: styling errors * fix: mcp cognify arguments * fix: ruff errors
- Loading branch information
1 parent
a2998b7
commit 0c2c587
Showing
7 changed files
with
346 additions
and
248 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
from .server import mcp | ||
from .server import main as server_main | ||
|
||
|
||
def main(): | ||
"""Main entry point for the package.""" | ||
mcp.run(transport="stdio") | ||
import asyncio | ||
|
||
asyncio.run(server_main()) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.