kurd 0.1.0__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.
- kurd-0.1.0/PKG-INFO +17 -0
- kurd-0.1.0/README.md +4 -0
- kurd-0.1.0/pyproject.toml +22 -0
- kurd-0.1.0/setup.cfg +4 -0
- kurd-0.1.0/src/__init__.py +1 -0
- kurd-0.1.0/src/kurd.egg-info/PKG-INFO +17 -0
- kurd-0.1.0/src/kurd.egg-info/SOURCES.txt +8 -0
- kurd-0.1.0/src/kurd.egg-info/dependency_links.txt +1 -0
- kurd-0.1.0/src/kurd.egg-info/top_level.txt +3 -0
- kurd-0.1.0/src/router.py +8 -0
kurd-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: kurd
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: The high-performance MCP gateway.
|
|
5
|
+
Author-email: Esmaeil Nikumanesh <esmaeil.nikumanesh@gmail.com>
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/semko/kurd-mcp
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
10
|
+
Classifier: Operating System :: OS Independent
|
|
11
|
+
Requires-Python: >=3.8
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
|
|
14
|
+
# Kurd MCP Gateway
|
|
15
|
+
A high-performance Model Context Protocol router.
|
|
16
|
+
|
|
17
|
+
Bezhi Kurd & Kurdistan
|
kurd-0.1.0/README.md
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0.0", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "kurd"
|
|
7
|
+
version = "0.1.0"
|
|
8
|
+
description = "The high-performance MCP gateway."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
authors = [
|
|
11
|
+
{ name = "Esmaeil Nikumanesh", email = "esmaeil.nikumanesh@gmail.com" }
|
|
12
|
+
]
|
|
13
|
+
license = { text = "MIT" }
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Programming Language :: Python :: 3",
|
|
16
|
+
"License :: OSI Approved :: MIT License",
|
|
17
|
+
"Operating System :: OS Independent",
|
|
18
|
+
]
|
|
19
|
+
requires-python = ">=3.8"
|
|
20
|
+
|
|
21
|
+
[project.urls]
|
|
22
|
+
Homepage = "https://github.com/semko/kurd-mcp"
|
kurd-0.1.0/setup.cfg
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
from .router import Router
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: kurd
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: The high-performance MCP gateway.
|
|
5
|
+
Author-email: Esmaeil Nikumanesh <esmaeil.nikumanesh@gmail.com>
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/semko/kurd-mcp
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
10
|
+
Classifier: Operating System :: OS Independent
|
|
11
|
+
Requires-Python: >=3.8
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
|
|
14
|
+
# Kurd MCP Gateway
|
|
15
|
+
A high-performance Model Context Protocol router.
|
|
16
|
+
|
|
17
|
+
Bezhi Kurd & Kurdistan
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
kurd-0.1.0/src/router.py
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
class Router:
|
|
2
|
+
def __init__(self, name: str, version: str = "1.0.0"):
|
|
3
|
+
self.name = name
|
|
4
|
+
self.version = version
|
|
5
|
+
print(f"[{self.name}] Router initialized successfully.")
|
|
6
|
+
|
|
7
|
+
def run(self, transport: str = "stdio"):
|
|
8
|
+
print(f"Running MCP Gateway on transport: {transport}")
|