-
Notifications
You must be signed in to change notification settings - Fork 183
Expand file tree
/
Copy pathmanifest.json
More file actions
69 lines (69 loc) · 1.98 KB
/
manifest.json
File metadata and controls
69 lines (69 loc) · 1.98 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"$schema": "../../dist/mcpb-manifest.schema.json",
"dxt_version": "0.1",
"name": "file-manager-python-package",
"display_name": "Python Package File Manager MCP",
"version": "0.1.0",
"description": "A Python Package MCP server for file operations",
"long_description": "This extension provides file management capabilities through a Python Package MCP server. It demonstrates Python package-based MCP Bundle development, including file operations, directory management, and proper MCP protocol implementation.",
"author": {
"name": "Anthropic",
"email": "support@anthropic.com",
"url": "https://github.com/anthropics"
},
"server": {
"type": "python",
"entry_point": "mcp_server_file_manager/__main__.py",
"mcp_config": {
"command": "python",
"args": [
"-m",
"mcp_server_file_manager",
"--workspace=${user_config.workspace_directory}"
],
"env": {
"DEBUG": "${user_config.debug_mode}",
"PYTHONPATH": "${__dirname}/mcp_server_file_manager/lib"
}
}
},
"tools": [
{
"name": "list_files",
"description": "List files in a directory"
},
{
"name": "read_file",
"description": "Read file contents"
},
{
"name": "get_file_info",
"description": "Get information about a file"
}
],
"keywords": ["file", "directory", "python", "management", "filesystem"],
"license": "MIT",
"user_config": {
"workspace_directory": {
"type": "directory",
"title": "Workspace Directory",
"description": "Directory to use as workspace",
"default": "${HOME}/Documents",
"required": false
},
"debug_mode": {
"type": "boolean",
"title": "Debug Mode",
"description": "Enable debug output",
"default": false,
"required": false
}
},
"compatibility": {
"claude_desktop": ">=0.10.0",
"platforms": ["darwin", "win32", "linux"],
"runtimes": {
"python": ">=3.8.0 <4"
}
}
}