mirror of
https://github.com/Tencent/WeKnora.git
synced 2026-08-31 00:50:02 +08:00
a76c6ef24e
Rename the distribution to tencent-weknora-mcp, point metadata at Tencent/WeKnora, bump to 1.1.1 for the transport/session fixes, and tighten publish to main/tags only via Trusted Publishing.
15 lines
378 B
Python
15 lines
378 B
Python
#!/usr/bin/env python3
|
|
"""
|
|
WeKnora MCP Server Package
|
|
|
|
A Model Context Protocol server that provides access to the WeKnora knowledge management API.
|
|
"""
|
|
|
|
__version__ = "1.1.1"
|
|
__author__ = "WeKnora Team"
|
|
__description__ = "WeKnora MCP Server - Model Context Protocol server for WeKnora API"
|
|
|
|
from weknora_mcp_server import WeKnoraClient, run
|
|
|
|
__all__ = ["WeKnoraClient", "run"]
|