Files
wizardchen a76c6ef24e fix(mcp-server): adopt official PyPI package tencent-weknora-mcp [v1.1.1]
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.
2026-07-30 15:52:28 +08:00

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"]