fangcloud-mcp 0.1.1__tar.gz → 0.1.3__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.1 → fangcloud_mcp-0.1.3}/MANIFEST.in +1 -1
- {fangcloud_mcp-0.1.1 → fangcloud_mcp-0.1.3}/PKG-INFO +6 -6
- {fangcloud_mcp-0.1.1 → fangcloud_mcp-0.1.3}/README.md +1 -1
- {fangcloud_mcp-0.1.1 → fangcloud_mcp-0.1.3}/fangcloud_mcp/__init__.py +1 -1
- {fangcloud_mcp-0.1.1 → fangcloud_mcp-0.1.3}/fangcloud_mcp/fangcloud.py +1 -1
- {fangcloud_mcp-0.1.1 → fangcloud_mcp-0.1.3}/fangcloud_mcp.egg-info/PKG-INFO +6 -6
- fangcloud_mcp-0.1.3/fangcloud_mcp.egg-info/entry_points.txt +3 -0
- {fangcloud_mcp-0.1.1 → fangcloud_mcp-0.1.3}/pyproject.toml +4 -1
- {fangcloud_mcp-0.1.1 → fangcloud_mcp-0.1.3}/setup.py +7 -6
- fangcloud_mcp-0.1.1/fangcloud_mcp.egg-info/entry_points.txt +0 -3
- {fangcloud_mcp-0.1.1 → fangcloud_mcp-0.1.3}/LICENSE +0 -0
- {fangcloud_mcp-0.1.1 → fangcloud_mcp-0.1.3}/fangcloud_mcp/fangcloud_api.py +0 -0
- {fangcloud_mcp-0.1.1 → fangcloud_mcp-0.1.3}/fangcloud_mcp.egg-info/SOURCES.txt +0 -0
- {fangcloud_mcp-0.1.1 → fangcloud_mcp-0.1.3}/fangcloud_mcp.egg-info/dependency_links.txt +0 -0
- {fangcloud_mcp-0.1.1 → fangcloud_mcp-0.1.3}/fangcloud_mcp.egg-info/requires.txt +0 -0
- {fangcloud_mcp-0.1.1 → fangcloud_mcp-0.1.3}/fangcloud_mcp.egg-info/top_level.txt +0 -0
- {fangcloud_mcp-0.1.1 → fangcloud_mcp-0.1.3}/setup.cfg +0 -0
@@ -1,14 +1,14 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: fangcloud_mcp
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.3
|
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_mcp
|
6
6
|
Author: FangCloud Developer
|
7
7
|
Author-email: dev@example.com
|
8
8
|
License: UNKNOWN
|
9
|
-
Project-URL: Bug Reports, https://github.com/example/
|
10
|
-
Project-URL: Source, https://github.com/example/
|
11
|
-
Project-URL: Documentation, https://github.com/example/
|
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
|
12
12
|
Keywords: fangcloud,mcp,cloud storage,api
|
13
13
|
Platform: UNKNOWN
|
14
14
|
Classifier: Development Status :: 4 - Beta
|
@@ -97,7 +97,7 @@ python fangcloud.py -c <your-access-token>
|
|
97
97
|
|
98
98
|
### 日志
|
99
99
|
|
100
|
-
服务器日志保存在`
|
100
|
+
服务器日志保存在`fangcloud-mcp.log`文件中,同时也会输出到控制台。
|
101
101
|
|
102
102
|
## API 参考
|
103
103
|
|
@@ -16,7 +16,7 @@ from .fangcloud_api import FangcloudAPI
|
|
16
16
|
|
17
17
|
|
18
18
|
# Configure logging
|
19
|
-
DEFAULT_LOG_FILE = "
|
19
|
+
DEFAULT_LOG_FILE = "fangcloud-mcp.log"
|
20
20
|
logging.basicConfig(
|
21
21
|
level=logging.INFO,
|
22
22
|
format='%(asctime)s - %(name)s - %(levelname)s - %(message)s',
|
@@ -1,14 +1,14 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: fangcloud-mcp
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.3
|
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_mcp
|
6
6
|
Author: FangCloud Developer
|
7
7
|
Author-email: dev@example.com
|
8
8
|
License: UNKNOWN
|
9
|
-
Project-URL: Bug Reports, https://github.com/example/
|
10
|
-
Project-URL: Source, https://github.com/example/
|
11
|
-
Project-URL: Documentation, https://github.com/example/
|
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
|
12
12
|
Keywords: fangcloud,mcp,cloud storage,api
|
13
13
|
Platform: UNKNOWN
|
14
14
|
Classifier: Development Status :: 4 - Beta
|
@@ -97,7 +97,7 @@ python fangcloud.py -c <your-access-token>
|
|
97
97
|
|
98
98
|
### 日志
|
99
99
|
|
100
|
-
服务器日志保存在`
|
100
|
+
服务器日志保存在`fangcloud-mcp.log`文件中,同时也会输出到控制台。
|
101
101
|
|
102
102
|
## API 参考
|
103
103
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
4
4
|
|
5
5
|
[project]
|
6
6
|
name = "fangcloud_mcp"
|
7
|
-
version = "0.1.
|
7
|
+
version = "0.1.3"
|
8
8
|
description = "FangCloud MCP 是一个 Model Context Protocol (MCP) 服务器实现,提供与 FangCloud 云存储服务的集成"
|
9
9
|
authors = [
|
10
10
|
{name = "FangCloud Developer", email = "dev@example.com"}
|
@@ -35,3 +35,6 @@ Documentation = "https://github.com/example/fangcloud-mcp#readme"
|
|
35
35
|
|
36
36
|
[project.scripts]
|
37
37
|
fangcloud-mcp = "fangcloud_mcp.fangcloud:main"
|
38
|
+
|
39
|
+
[tool.setuptools]
|
40
|
+
package-dir = {"fangcloud_mcp" = "fangcloud-mcp"}
|
@@ -2,13 +2,13 @@ from setuptools import setup, find_packages
|
|
2
2
|
|
3
3
|
setup(
|
4
4
|
name="fangcloud_mcp",
|
5
|
-
version="0.1.
|
5
|
+
version="0.1.3",
|
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_mcp",
|
12
12
|
packages=find_packages(),
|
13
13
|
classifiers=[
|
14
14
|
"Development Status :: 4 - Beta",
|
@@ -28,12 +28,13 @@ setup(
|
|
28
28
|
],
|
29
29
|
entry_points={
|
30
30
|
"console_scripts": [
|
31
|
-
"
|
31
|
+
"fangcloud_mcp=fangcloud_mcp.fangcloud:main",
|
32
32
|
],
|
33
33
|
},
|
34
|
+
package_dir={"fangcloud_mcp": "fangcloud_mcp"},
|
34
35
|
project_urls={
|
35
|
-
"Bug Reports": "https://github.com/example/
|
36
|
-
"Source": "https://github.com/example/
|
37
|
-
"Documentation": "https://github.com/example/
|
36
|
+
"Bug Reports": "https://github.com/example/fangcloud_mcp/issues",
|
37
|
+
"Source": "https://github.com/example/fangcloud_mcp",
|
38
|
+
"Documentation": "https://github.com/example/fangcloud_mcp#readme",
|
38
39
|
},
|
39
40
|
)
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|