Skip to content

Commit b18892e

Browse files
committed
hot fix import issues and update package version
1 parent 183e653 commit b18892e

File tree

3 files changed

+6
-9
lines changed

3 files changed

+6
-9
lines changed

pyproject.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "mcphub"
7-
version = "0.1.0"
8-
description = "A hub for Model Context Protocol (MCP) servers"
7+
version = "0.1.2"
8+
description = "A Python package for managing and integrating Model Context Protocol (MCP) servers with AI frameworks like OpenAI Agents, LangChain, and Autogen"
99
readme = "README.md"
1010
authors = [
1111
{name = "Hieu TRAN", email = "[email protected]"},
@@ -32,9 +32,9 @@ dependencies = [
3232
requires-python = "<4.0,>=3.10"
3333

3434
[project.urls]
35-
Documentation = "https://github.com/yourusername/mcphub#readme"
36-
Issues = "https://github.com/yourusername/mcphub/issues"
37-
Source = "https://github.com/yourusername/mcphub"
35+
Documentation = "https://github.com/Cognitive-Stacks/mcphub"
36+
Issues = "https://github.com/Cognitive-Stacks/mcphub/issues"
37+
Source = "https://github.com/Cognitive-Stacks/mcphub"
3838

3939
[project.scripts]
4040
mcphub = "mcphub.cli.commands:main"

src/mcphub/__init__.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,6 @@
44
This package provides tools for managing and interacting with MCP servers.
55
"""
66

7-
__version__ = "0.1.0"
8-
9-
from mcphub.adapter.adapter import MCPHubAdapter, MCPServerConfig
107
from mcphub.mcphub import MCPHub
118

129
__all__ = [

src/mcphub/mcphub.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from autogen_ext.tools.mcp import StdioMcpToolAdapter
77
from langchain_core.tools import BaseTool
88
from mcp import StdioServerParameters
9-
from mcp_servers import MCPServerConfig, MCPServers, MCPServersParams
9+
from .mcp_servers import MCPServerConfig, MCPServers, MCPServersParams
1010

1111

1212
@dataclass

0 commit comments

Comments
 (0)