planemcp 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.
- planemcp-0.1.0/.github/workflows/python-publish.yml +53 -0
- planemcp-0.1.0/.gitignore +218 -0
- planemcp-0.1.0/PKG-INFO +15 -0
- planemcp-0.1.0/README.md +2 -0
- planemcp-0.1.0/pyproject.toml +21 -0
- planemcp-0.1.0/src/planemcp/__init__.py +0 -0
- planemcp-0.1.0/src/planemcp/main.py +86 -0
- planemcp-0.1.0/tests/__init__.py +0 -0
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
name: Upload Python Package
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
release:
|
|
5
|
+
types: [published]
|
|
6
|
+
|
|
7
|
+
permissions:
|
|
8
|
+
contents: read
|
|
9
|
+
|
|
10
|
+
jobs:
|
|
11
|
+
release-build:
|
|
12
|
+
runs-on: ubuntu-latest
|
|
13
|
+
|
|
14
|
+
steps:
|
|
15
|
+
- uses: actions/checkout@v4
|
|
16
|
+
|
|
17
|
+
- uses: actions/setup-python@v5
|
|
18
|
+
with:
|
|
19
|
+
python-version: "3.x"
|
|
20
|
+
|
|
21
|
+
- name: Build release distributions
|
|
22
|
+
run: |
|
|
23
|
+
python -m pip install build hatchling
|
|
24
|
+
python -m build
|
|
25
|
+
|
|
26
|
+
- name: Upload distributions
|
|
27
|
+
uses: actions/upload-artifact@v4
|
|
28
|
+
with:
|
|
29
|
+
name: release-dists
|
|
30
|
+
path: dist/
|
|
31
|
+
|
|
32
|
+
pypi-publish:
|
|
33
|
+
runs-on: ubuntu-latest
|
|
34
|
+
needs:
|
|
35
|
+
- release-build
|
|
36
|
+
permissions:
|
|
37
|
+
id-token: write
|
|
38
|
+
|
|
39
|
+
environment:
|
|
40
|
+
name: pypi
|
|
41
|
+
url: https://pypi.org/p/planemcp
|
|
42
|
+
|
|
43
|
+
steps:
|
|
44
|
+
- name: Retrieve release distributions
|
|
45
|
+
uses: actions/download-artifact@v4
|
|
46
|
+
with:
|
|
47
|
+
name: release-dists
|
|
48
|
+
path: dist/
|
|
49
|
+
|
|
50
|
+
- name: Publish release distributions to PyPI
|
|
51
|
+
uses: pypa/gh-action-pypi-publish@release/v1
|
|
52
|
+
with:
|
|
53
|
+
packages-dir: dist/
|
|
@@ -0,0 +1,218 @@
|
|
|
1
|
+
# Byte-compiled / optimized / DLL files
|
|
2
|
+
__pycache__/
|
|
3
|
+
*.py[codz]
|
|
4
|
+
*$py.class
|
|
5
|
+
|
|
6
|
+
# C extensions
|
|
7
|
+
*.so
|
|
8
|
+
|
|
9
|
+
# Distribution / packaging
|
|
10
|
+
.Python
|
|
11
|
+
build/
|
|
12
|
+
develop-eggs/
|
|
13
|
+
dist/
|
|
14
|
+
downloads/
|
|
15
|
+
eggs/
|
|
16
|
+
.eggs/
|
|
17
|
+
lib/
|
|
18
|
+
lib64/
|
|
19
|
+
parts/
|
|
20
|
+
sdist/
|
|
21
|
+
var/
|
|
22
|
+
wheels/
|
|
23
|
+
share/python-wheels/
|
|
24
|
+
*.egg-info/
|
|
25
|
+
.installed.cfg
|
|
26
|
+
*.egg
|
|
27
|
+
MANIFEST
|
|
28
|
+
|
|
29
|
+
# PyInstaller
|
|
30
|
+
# Usually these files are written by a python script from a template
|
|
31
|
+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
|
32
|
+
*.manifest
|
|
33
|
+
*.spec
|
|
34
|
+
|
|
35
|
+
# Installer logs
|
|
36
|
+
pip-log.txt
|
|
37
|
+
pip-delete-this-directory.txt
|
|
38
|
+
|
|
39
|
+
# Unit test / coverage reports
|
|
40
|
+
htmlcov/
|
|
41
|
+
.tox/
|
|
42
|
+
.nox/
|
|
43
|
+
.coverage
|
|
44
|
+
.coverage.*
|
|
45
|
+
.cache
|
|
46
|
+
nosetests.xml
|
|
47
|
+
coverage.xml
|
|
48
|
+
*.cover
|
|
49
|
+
*.py.cover
|
|
50
|
+
.hypothesis/
|
|
51
|
+
.pytest_cache/
|
|
52
|
+
cover/
|
|
53
|
+
|
|
54
|
+
# Translations
|
|
55
|
+
*.mo
|
|
56
|
+
*.pot
|
|
57
|
+
|
|
58
|
+
# Django stuff:
|
|
59
|
+
*.log
|
|
60
|
+
local_settings.py
|
|
61
|
+
db.sqlite3
|
|
62
|
+
db.sqlite3-journal
|
|
63
|
+
|
|
64
|
+
# Flask stuff:
|
|
65
|
+
instance/
|
|
66
|
+
.webassets-cache
|
|
67
|
+
|
|
68
|
+
# Scrapy stuff:
|
|
69
|
+
.scrapy
|
|
70
|
+
|
|
71
|
+
# Sphinx documentation
|
|
72
|
+
docs/_build/
|
|
73
|
+
|
|
74
|
+
# PyBuilder
|
|
75
|
+
.pybuilder/
|
|
76
|
+
target/
|
|
77
|
+
|
|
78
|
+
# Jupyter Notebook
|
|
79
|
+
.ipynb_checkpoints
|
|
80
|
+
|
|
81
|
+
# IPython
|
|
82
|
+
profile_default/
|
|
83
|
+
ipython_config.py
|
|
84
|
+
|
|
85
|
+
# pyenv
|
|
86
|
+
# For a library or package, you might want to ignore these files since the code is
|
|
87
|
+
# intended to run in multiple environments; otherwise, check them in:
|
|
88
|
+
# .python-version
|
|
89
|
+
|
|
90
|
+
# pipenv
|
|
91
|
+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
|
|
92
|
+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
|
|
93
|
+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
|
|
94
|
+
# install all needed dependencies.
|
|
95
|
+
# Pipfile.lock
|
|
96
|
+
|
|
97
|
+
# UV
|
|
98
|
+
# Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control.
|
|
99
|
+
# This is especially recommended for binary packages to ensure reproducibility, and is more
|
|
100
|
+
# commonly ignored for libraries.
|
|
101
|
+
# uv.lock
|
|
102
|
+
|
|
103
|
+
# poetry
|
|
104
|
+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
|
|
105
|
+
# This is especially recommended for binary packages to ensure reproducibility, and is more
|
|
106
|
+
# commonly ignored for libraries.
|
|
107
|
+
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
|
|
108
|
+
# poetry.lock
|
|
109
|
+
# poetry.toml
|
|
110
|
+
|
|
111
|
+
# pdm
|
|
112
|
+
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
|
|
113
|
+
# pdm recommends including project-wide configuration in pdm.toml, but excluding .pdm-python.
|
|
114
|
+
# https://pdm-project.org/en/latest/usage/project/#working-with-version-control
|
|
115
|
+
# pdm.lock
|
|
116
|
+
# pdm.toml
|
|
117
|
+
.pdm-python
|
|
118
|
+
.pdm-build/
|
|
119
|
+
|
|
120
|
+
# pixi
|
|
121
|
+
# Similar to Pipfile.lock, it is generally recommended to include pixi.lock in version control.
|
|
122
|
+
# pixi.lock
|
|
123
|
+
# Pixi creates a virtual environment in the .pixi directory, just like venv module creates one
|
|
124
|
+
# in the .venv directory. It is recommended not to include this directory in version control.
|
|
125
|
+
.pixi
|
|
126
|
+
|
|
127
|
+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
|
|
128
|
+
__pypackages__/
|
|
129
|
+
|
|
130
|
+
# Celery stuff
|
|
131
|
+
celerybeat-schedule
|
|
132
|
+
celerybeat.pid
|
|
133
|
+
|
|
134
|
+
# Redis
|
|
135
|
+
*.rdb
|
|
136
|
+
*.aof
|
|
137
|
+
*.pid
|
|
138
|
+
|
|
139
|
+
# RabbitMQ
|
|
140
|
+
mnesia/
|
|
141
|
+
rabbitmq/
|
|
142
|
+
rabbitmq-data/
|
|
143
|
+
|
|
144
|
+
# ActiveMQ
|
|
145
|
+
activemq-data/
|
|
146
|
+
|
|
147
|
+
# SageMath parsed files
|
|
148
|
+
*.sage.py
|
|
149
|
+
|
|
150
|
+
# Environments
|
|
151
|
+
.env
|
|
152
|
+
.envrc
|
|
153
|
+
.venv
|
|
154
|
+
env/
|
|
155
|
+
venv/
|
|
156
|
+
ENV/
|
|
157
|
+
env.bak/
|
|
158
|
+
venv.bak/
|
|
159
|
+
|
|
160
|
+
# Spyder project settings
|
|
161
|
+
.spyderproject
|
|
162
|
+
.spyproject
|
|
163
|
+
|
|
164
|
+
# Rope project settings
|
|
165
|
+
.ropeproject
|
|
166
|
+
|
|
167
|
+
# mkdocs documentation
|
|
168
|
+
/site
|
|
169
|
+
|
|
170
|
+
# mypy
|
|
171
|
+
.mypy_cache/
|
|
172
|
+
.dmypy.json
|
|
173
|
+
dmypy.json
|
|
174
|
+
|
|
175
|
+
# Pyre type checker
|
|
176
|
+
.pyre/
|
|
177
|
+
|
|
178
|
+
# pytype static type analyzer
|
|
179
|
+
.pytype/
|
|
180
|
+
|
|
181
|
+
# Cython debug symbols
|
|
182
|
+
cython_debug/
|
|
183
|
+
|
|
184
|
+
# PyCharm
|
|
185
|
+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
|
|
186
|
+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
|
|
187
|
+
# and can be added to the global gitignore or merged into this file. For a more nuclear
|
|
188
|
+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
|
189
|
+
# .idea/
|
|
190
|
+
|
|
191
|
+
# Abstra
|
|
192
|
+
# Abstra is an AI-powered process automation framework.
|
|
193
|
+
# Ignore directories containing user credentials, local state, and settings.
|
|
194
|
+
# Learn more at https://abstra.io/docs
|
|
195
|
+
.abstra/
|
|
196
|
+
|
|
197
|
+
# Visual Studio Code
|
|
198
|
+
# Visual Studio Code specific template is maintained in a separate VisualStudioCode.gitignore
|
|
199
|
+
# that can be found at https://github.com/github/gitignore/blob/main/Global/VisualStudioCode.gitignore
|
|
200
|
+
# and can be added to the global gitignore or merged into this file. However, if you prefer,
|
|
201
|
+
# you could uncomment the following to ignore the entire vscode folder
|
|
202
|
+
# .vscode/
|
|
203
|
+
# Temporary file for partial code execution
|
|
204
|
+
tempCodeRunnerFile.py
|
|
205
|
+
|
|
206
|
+
# Ruff stuff:
|
|
207
|
+
.ruff_cache/
|
|
208
|
+
|
|
209
|
+
# PyPI configuration file
|
|
210
|
+
.pypirc
|
|
211
|
+
|
|
212
|
+
# Marimo
|
|
213
|
+
marimo/_static/
|
|
214
|
+
marimo/_lsp/
|
|
215
|
+
__marimo__/
|
|
216
|
+
|
|
217
|
+
# Streamlit
|
|
218
|
+
.streamlit/secrets.toml
|
planemcp-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: planemcp
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: A Python module.
|
|
5
|
+
Requires-Python: >=3.9
|
|
6
|
+
Requires-Dist: dotdb
|
|
7
|
+
Requires-Dist: linerun
|
|
8
|
+
Requires-Dist: mcp
|
|
9
|
+
Provides-Extra: dev
|
|
10
|
+
Requires-Dist: pytest; extra == 'dev'
|
|
11
|
+
Requires-Dist: ruff; extra == 'dev'
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
|
|
14
|
+
# PlaneMCP
|
|
15
|
+
A simple MCP server
|
planemcp-0.1.0/README.md
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "planemcp"
|
|
7
|
+
version = "0.1.0"
|
|
8
|
+
description = "A Python module."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.9"
|
|
11
|
+
dependencies = [
|
|
12
|
+
"linerun",
|
|
13
|
+
"dotdb",
|
|
14
|
+
"mcp"
|
|
15
|
+
]
|
|
16
|
+
|
|
17
|
+
[project.optional-dependencies]
|
|
18
|
+
dev = [
|
|
19
|
+
"pytest",
|
|
20
|
+
"ruff"
|
|
21
|
+
]
|
|
File without changes
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
from mcp.server.fastmcp import FastMCP
|
|
2
|
+
import os
|
|
3
|
+
from linerun import Code_Runner
|
|
4
|
+
mcp = FastMCP("PlaneMCP")
|
|
5
|
+
runner = None
|
|
6
|
+
@mcp.tool()
|
|
7
|
+
def init_runner(path: str, venv_path: str) -> str:
|
|
8
|
+
"""
|
|
9
|
+
Creates a new sandboxed runner.
|
|
10
|
+
Will throw an error if Path is not empty. Automatically scaffolds the Python virtual environment.
|
|
11
|
+
"""
|
|
12
|
+
global runner
|
|
13
|
+
os.makedirs(path, exist_ok=True)
|
|
14
|
+
runner = Code_Runner(path, venv_path)
|
|
15
|
+
return f"Successfully initialized Code_Runner at {path} with venv {venv_path}"
|
|
16
|
+
@mcp.tool()
|
|
17
|
+
def write_file(name: str, content: str) -> str:
|
|
18
|
+
"""Overwrites (or creates) a file with the exact content provided."""
|
|
19
|
+
if not runner:
|
|
20
|
+
return "Error: Code_Runner not initialized. Call init_runner first."
|
|
21
|
+
runner.Write_File(name, content)
|
|
22
|
+
return f"Successfully wrote to {name}"
|
|
23
|
+
@mcp.tool()
|
|
24
|
+
def replace_in_file(name: str, target_content: str, replacement_content: str) -> str:
|
|
25
|
+
"""
|
|
26
|
+
Finds the first exact match of TargetContent and replaces it.
|
|
27
|
+
Ideal for surgical patches. Throws an error if the match is not exact.
|
|
28
|
+
"""
|
|
29
|
+
if not runner:
|
|
30
|
+
return "Error: Code_Runner not initialized."
|
|
31
|
+
runner.Replace_In_File(name, target_content, replacement_content)
|
|
32
|
+
return f"Successfully replaced content in {name}"
|
|
33
|
+
@mcp.tool()
|
|
34
|
+
def read_file(name: str) -> str:
|
|
35
|
+
"""Returns the string contents of a file."""
|
|
36
|
+
if not runner:
|
|
37
|
+
return "Error: Code_Runner not initialized."
|
|
38
|
+
return runner.Read_File(name)
|
|
39
|
+
@mcp.tool()
|
|
40
|
+
def add_file(name: str) -> str:
|
|
41
|
+
"""Creates an empty file."""
|
|
42
|
+
if not runner:
|
|
43
|
+
return "Error: Code_Runner not initialized."
|
|
44
|
+
runner.Add_File(name)
|
|
45
|
+
return f"Successfully added empty file {name}"
|
|
46
|
+
@mcp.tool()
|
|
47
|
+
def delete_file(name: str) -> str:
|
|
48
|
+
"""Deletes a file."""
|
|
49
|
+
if not runner:
|
|
50
|
+
return "Error: Code_Runner not initialized."
|
|
51
|
+
runner.Delete_File(name)
|
|
52
|
+
return f"Successfully deleted {name}"
|
|
53
|
+
@mcp.tool()
|
|
54
|
+
def all_files(regex: str = None) -> list[str]:
|
|
55
|
+
"""Returns a list of all files relative to the sandbox path. Supports optional regex filtering."""
|
|
56
|
+
if not runner:
|
|
57
|
+
raise ValueError("Code_Runner not initialized.")
|
|
58
|
+
return runner.All_files(regex)
|
|
59
|
+
@mcp.tool()
|
|
60
|
+
def add_module(name: str) -> str:
|
|
61
|
+
"""Uses pip to install a package into the virtual environment."""
|
|
62
|
+
if not runner:
|
|
63
|
+
return "Error: Code_Runner not initialized."
|
|
64
|
+
runner.Add_Module(name)
|
|
65
|
+
return f"Successfully added module {name}"
|
|
66
|
+
@mcp.tool()
|
|
67
|
+
def remove_module(name: str) -> str:
|
|
68
|
+
"""Uninstalls a package."""
|
|
69
|
+
if not runner:
|
|
70
|
+
return "Error: Code_Runner not initialized."
|
|
71
|
+
runner.Remove_Module(name)
|
|
72
|
+
return f"Successfully removed module {name}"
|
|
73
|
+
@mcp.tool()
|
|
74
|
+
def list_modules() -> list[str]:
|
|
75
|
+
"""Lists all installed pip packages."""
|
|
76
|
+
if not runner:
|
|
77
|
+
raise ValueError("Code_Runner not initialized.")
|
|
78
|
+
return runner.List_Modules()
|
|
79
|
+
@mcp.tool()
|
|
80
|
+
def run_code(name: str) -> str:
|
|
81
|
+
"""Executes a file using the virtual environment's Python binary. Captures and returns standard output."""
|
|
82
|
+
if not runner:
|
|
83
|
+
return "Error: Code_Runner not initialized."
|
|
84
|
+
return runner.Run_Code(name)
|
|
85
|
+
if __name__ == "__main__":
|
|
86
|
+
mcp.run()
|
|
File without changes
|