fangcloud-mcp 0.1.3__tar.gz → 0.1.5__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.
- {fangcloud_mcp-0.1.3 → fangcloud_mcp-0.1.5}/MANIFEST.in +1 -1
- {fangcloud_mcp-0.1.3/fangcloud_mcp.egg-info → fangcloud_mcp-0.1.5}/PKG-INFO +11 -31
- {fangcloud_mcp-0.1.3 → fangcloud_mcp-0.1.5}/README.md +1 -20
- {fangcloud_mcp-0.1.3/fangcloud_mcp → fangcloud_mcp-0.1.5/fangcloud}/__init__.py +1 -1
- {fangcloud_mcp-0.1.3 → fangcloud_mcp-0.1.5/fangcloud_mcp.egg-info}/PKG-INFO +12 -32
- {fangcloud_mcp-0.1.3 → fangcloud_mcp-0.1.5}/fangcloud_mcp.egg-info/SOURCES.txt +3 -3
- fangcloud_mcp-0.1.5/fangcloud_mcp.egg-info/entry_points.txt +2 -0
- fangcloud_mcp-0.1.5/fangcloud_mcp.egg-info/requires.txt +2 -0
- fangcloud_mcp-0.1.5/fangcloud_mcp.egg-info/top_level.txt +1 -0
- {fangcloud_mcp-0.1.3 → fangcloud_mcp-0.1.5}/pyproject.toml +5 -11
- {fangcloud_mcp-0.1.3 → fangcloud_mcp-0.1.5}/setup.py +9 -9
- fangcloud_mcp-0.1.3/fangcloud_mcp.egg-info/entry_points.txt +0 -3
- fangcloud_mcp-0.1.3/fangcloud_mcp.egg-info/requires.txt +0 -2
- fangcloud_mcp-0.1.3/fangcloud_mcp.egg-info/top_level.txt +0 -1
- {fangcloud_mcp-0.1.3 → fangcloud_mcp-0.1.5}/LICENSE +0 -0
- {fangcloud_mcp-0.1.3/fangcloud_mcp → fangcloud_mcp-0.1.5/fangcloud}/fangcloud.py +0 -0
- {fangcloud_mcp-0.1.3/fangcloud_mcp → fangcloud_mcp-0.1.5/fangcloud}/fangcloud_api.py +0 -0
- {fangcloud_mcp-0.1.3 → fangcloud_mcp-0.1.5}/fangcloud_mcp.egg-info/dependency_links.txt +0 -0
- {fangcloud_mcp-0.1.3 → fangcloud_mcp-0.1.5}/setup.cfg +0 -0
@@ -1,16 +1,11 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.4
|
2
2
|
Name: fangcloud-mcp
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.5
|
4
4
|
Summary: FangCloud MCP 是一个 Model Context Protocol (MCP) 服务器实现,提供与 FangCloud 云存储服务的集成
|
5
|
-
Home-page: https://github.com/example/
|
5
|
+
Home-page: https://github.com/example/fangcloud
|
6
6
|
Author: FangCloud Developer
|
7
|
-
Author-email: dev@example.com
|
8
|
-
License: UNKNOWN
|
9
|
-
Project-URL: Bug Reports, https://github.com/example/fangcloud_mcp/issues
|
10
|
-
Project-URL: Source, https://github.com/example/fangcloud_mcp
|
11
|
-
Project-URL: Documentation, https://github.com/example/fangcloud_mcp#readme
|
7
|
+
Author-email: FangCloud Developer <dev@example.com>
|
12
8
|
Keywords: fangcloud,mcp,cloud storage,api
|
13
|
-
Platform: UNKNOWN
|
14
9
|
Classifier: Development Status :: 4 - Beta
|
15
10
|
Classifier: Intended Audience :: Developers
|
16
11
|
Classifier: Programming Language :: Python :: 3
|
@@ -22,6 +17,12 @@ Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
22
17
|
Requires-Python: >=3.12
|
23
18
|
Description-Content-Type: text/markdown
|
24
19
|
License-File: LICENSE
|
20
|
+
Requires-Dist: aiohttp>=3.8.6
|
21
|
+
Requires-Dist: mcp[cli]>=1.7.1
|
22
|
+
Dynamic: author
|
23
|
+
Dynamic: home-page
|
24
|
+
Dynamic: license-file
|
25
|
+
Dynamic: requires-python
|
25
26
|
|
26
27
|
# FangCloud MCP
|
27
28
|
|
@@ -57,26 +58,7 @@ FangCloud MCP 提供以下功能:
|
|
57
58
|
### 从 PyPI 安装(推荐)
|
58
59
|
|
59
60
|
```bash
|
60
|
-
pip install fangcloud
|
61
|
-
```
|
62
|
-
|
63
|
-
### 从源码安装
|
64
|
-
|
65
|
-
```bash
|
66
|
-
# 克隆仓库
|
67
|
-
git clone https://github.com/example/fangcloud-mcp.git
|
68
|
-
cd fangcloud-mcp
|
69
|
-
|
70
|
-
# 使用pip安装
|
71
|
-
pip install .
|
72
|
-
```
|
73
|
-
|
74
|
-
### 开发模式安装
|
75
|
-
|
76
|
-
```bash
|
77
|
-
git clone https://github.com/example/fangcloud-mcp.git
|
78
|
-
cd fangcloud-mcp
|
79
|
-
pip install -e .
|
61
|
+
pip install fangcloud
|
80
62
|
```
|
81
63
|
|
82
64
|
## 使用方法
|
@@ -192,5 +174,3 @@ search_items(query_words: str, search_type: Optional[str] = "all", page_id: Opti
|
|
192
174
|
## 许可证
|
193
175
|
|
194
176
|
[添加许可证信息]
|
195
|
-
|
196
|
-
|
@@ -32,26 +32,7 @@ FangCloud MCP 提供以下功能:
|
|
32
32
|
### 从 PyPI 安装(推荐)
|
33
33
|
|
34
34
|
```bash
|
35
|
-
pip install fangcloud
|
36
|
-
```
|
37
|
-
|
38
|
-
### 从源码安装
|
39
|
-
|
40
|
-
```bash
|
41
|
-
# 克隆仓库
|
42
|
-
git clone https://github.com/example/fangcloud-mcp.git
|
43
|
-
cd fangcloud-mcp
|
44
|
-
|
45
|
-
# 使用pip安装
|
46
|
-
pip install .
|
47
|
-
```
|
48
|
-
|
49
|
-
### 开发模式安装
|
50
|
-
|
51
|
-
```bash
|
52
|
-
git clone https://github.com/example/fangcloud-mcp.git
|
53
|
-
cd fangcloud-mcp
|
54
|
-
pip install -e .
|
35
|
+
pip install fangcloud
|
55
36
|
```
|
56
37
|
|
57
38
|
## 使用方法
|
@@ -1,16 +1,11 @@
|
|
1
|
-
Metadata-Version: 2.
|
2
|
-
Name:
|
3
|
-
Version: 0.1.
|
1
|
+
Metadata-Version: 2.4
|
2
|
+
Name: fangcloud-mcp
|
3
|
+
Version: 0.1.5
|
4
4
|
Summary: FangCloud MCP 是一个 Model Context Protocol (MCP) 服务器实现,提供与 FangCloud 云存储服务的集成
|
5
|
-
Home-page: https://github.com/example/
|
5
|
+
Home-page: https://github.com/example/fangcloud
|
6
6
|
Author: FangCloud Developer
|
7
|
-
Author-email: dev@example.com
|
8
|
-
License: UNKNOWN
|
9
|
-
Project-URL: Bug Reports, https://github.com/example/fangcloud_mcp/issues
|
10
|
-
Project-URL: Source, https://github.com/example/fangcloud_mcp
|
11
|
-
Project-URL: Documentation, https://github.com/example/fangcloud_mcp#readme
|
7
|
+
Author-email: FangCloud Developer <dev@example.com>
|
12
8
|
Keywords: fangcloud,mcp,cloud storage,api
|
13
|
-
Platform: UNKNOWN
|
14
9
|
Classifier: Development Status :: 4 - Beta
|
15
10
|
Classifier: Intended Audience :: Developers
|
16
11
|
Classifier: Programming Language :: Python :: 3
|
@@ -22,6 +17,12 @@ Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
22
17
|
Requires-Python: >=3.12
|
23
18
|
Description-Content-Type: text/markdown
|
24
19
|
License-File: LICENSE
|
20
|
+
Requires-Dist: aiohttp>=3.8.6
|
21
|
+
Requires-Dist: mcp[cli]>=1.7.1
|
22
|
+
Dynamic: author
|
23
|
+
Dynamic: home-page
|
24
|
+
Dynamic: license-file
|
25
|
+
Dynamic: requires-python
|
25
26
|
|
26
27
|
# FangCloud MCP
|
27
28
|
|
@@ -57,26 +58,7 @@ FangCloud MCP 提供以下功能:
|
|
57
58
|
### 从 PyPI 安装(推荐)
|
58
59
|
|
59
60
|
```bash
|
60
|
-
pip install fangcloud
|
61
|
-
```
|
62
|
-
|
63
|
-
### 从源码安装
|
64
|
-
|
65
|
-
```bash
|
66
|
-
# 克隆仓库
|
67
|
-
git clone https://github.com/example/fangcloud-mcp.git
|
68
|
-
cd fangcloud-mcp
|
69
|
-
|
70
|
-
# 使用pip安装
|
71
|
-
pip install .
|
72
|
-
```
|
73
|
-
|
74
|
-
### 开发模式安装
|
75
|
-
|
76
|
-
```bash
|
77
|
-
git clone https://github.com/example/fangcloud-mcp.git
|
78
|
-
cd fangcloud-mcp
|
79
|
-
pip install -e .
|
61
|
+
pip install fangcloud
|
80
62
|
```
|
81
63
|
|
82
64
|
## 使用方法
|
@@ -192,5 +174,3 @@ search_items(query_words: str, search_type: Optional[str] = "all", page_id: Opti
|
|
192
174
|
## 许可证
|
193
175
|
|
194
176
|
[添加许可证信息]
|
195
|
-
|
196
|
-
|
@@ -3,9 +3,9 @@ MANIFEST.in
|
|
3
3
|
README.md
|
4
4
|
pyproject.toml
|
5
5
|
setup.py
|
6
|
-
|
7
|
-
|
8
|
-
|
6
|
+
fangcloud/__init__.py
|
7
|
+
fangcloud/fangcloud.py
|
8
|
+
fangcloud/fangcloud_api.py
|
9
9
|
fangcloud_mcp.egg-info/PKG-INFO
|
10
10
|
fangcloud_mcp.egg-info/SOURCES.txt
|
11
11
|
fangcloud_mcp.egg-info/dependency_links.txt
|
@@ -0,0 +1 @@
|
|
1
|
+
fangcloud
|
@@ -3,8 +3,8 @@ requires = ["setuptools>=42", "wheel"]
|
|
3
3
|
build-backend = "setuptools.build_meta"
|
4
4
|
|
5
5
|
[project]
|
6
|
-
name = "
|
7
|
-
version = "0.1.
|
6
|
+
name = "fangcloud-mcp"
|
7
|
+
version = "0.1.5"
|
8
8
|
description = "FangCloud MCP 是一个 Model Context Protocol (MCP) 服务器实现,提供与 FangCloud 云存储服务的集成"
|
9
9
|
authors = [
|
10
10
|
{name = "FangCloud Developer", email = "dev@example.com"}
|
@@ -23,18 +23,12 @@ classifiers = [
|
|
23
23
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
24
24
|
]
|
25
25
|
dependencies = [
|
26
|
-
"aiohttp>=3.
|
26
|
+
"aiohttp>=3.8.6",
|
27
27
|
"mcp[cli]>=1.7.1",
|
28
28
|
]
|
29
29
|
|
30
|
-
[project.urls]
|
31
|
-
Homepage = "https://github.com/example/fangcloud-mcp"
|
32
|
-
"Bug Reports" = "https://github.com/example/fangcloud-mcp/issues"
|
33
|
-
Source = "https://github.com/example/fangcloud-mcp"
|
34
|
-
Documentation = "https://github.com/example/fangcloud-mcp#readme"
|
35
|
-
|
36
30
|
[project.scripts]
|
37
|
-
fangcloud
|
31
|
+
fangcloud = "fangcloud.fangcloud:main"
|
38
32
|
|
39
33
|
[tool.setuptools]
|
40
|
-
package-dir = {"
|
34
|
+
package-dir = {"fangcloud" = "fangcloud"}
|
@@ -1,14 +1,14 @@
|
|
1
1
|
from setuptools import setup, find_packages
|
2
2
|
|
3
3
|
setup(
|
4
|
-
name="
|
5
|
-
version="0.1.
|
4
|
+
name="fangcloud-mcp",
|
5
|
+
version="0.1.5",
|
6
6
|
author="FangCloud Developer",
|
7
7
|
author_email="dev@example.com",
|
8
8
|
description="FangCloud MCP 是一个 Model Context Protocol (MCP) 服务器实现,提供与 FangCloud 云存储服务的集成",
|
9
9
|
long_description=open("README.md", encoding="utf-8").read(),
|
10
10
|
long_description_content_type="text/markdown",
|
11
|
-
url="https://github.com/example/
|
11
|
+
url="https://github.com/example/fangcloud",
|
12
12
|
packages=find_packages(),
|
13
13
|
classifiers=[
|
14
14
|
"Development Status :: 4 - Beta",
|
@@ -23,18 +23,18 @@ setup(
|
|
23
23
|
keywords="fangcloud, mcp, cloud storage, api",
|
24
24
|
python_requires=">=3.12",
|
25
25
|
install_requires=[
|
26
|
-
"aiohttp>=3.
|
26
|
+
"aiohttp>=3.8.6",
|
27
27
|
"mcp[cli]>=1.7.1",
|
28
28
|
],
|
29
29
|
entry_points={
|
30
30
|
"console_scripts": [
|
31
|
-
"
|
31
|
+
"fangcloud=fangcloud.fangcloud:main",
|
32
32
|
],
|
33
33
|
},
|
34
|
-
package_dir={"
|
34
|
+
package_dir={"fangcloud": "fangcloud"},
|
35
35
|
project_urls={
|
36
|
-
"Bug Reports": "https://github.com/example/
|
37
|
-
"Source": "https://github.com/example/
|
38
|
-
"Documentation": "https://github.com/example/
|
36
|
+
"Bug Reports": "https://github.com/example/fangcloud/issues",
|
37
|
+
"Source": "https://github.com/example/fangcloud",
|
38
|
+
"Documentation": "https://github.com/example/fangcloud#readme",
|
39
39
|
},
|
40
40
|
)
|
@@ -1 +0,0 @@
|
|
1
|
-
fangcloud_mcp
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|