fcp-python 0.1.5__tar.gz → 0.1.6__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.
- {fcp_python-0.1.5 → fcp_python-0.1.6}/.claude-plugin/plugin.json +1 -1
- {fcp_python-0.1.5 → fcp_python-0.1.6}/PKG-INFO +1 -1
- {fcp_python-0.1.5 → fcp_python-0.1.6}/pyproject.toml +1 -1
- {fcp_python-0.1.5 → fcp_python-0.1.6}/src/fcp_python/main.py +6 -4
- {fcp_python-0.1.5 → fcp_python-0.1.6}/uv.lock +1 -1
- {fcp_python-0.1.5 → fcp_python-0.1.6}/.github/workflows/ci.yml +0 -0
- {fcp_python-0.1.5 → fcp_python-0.1.6}/.github/workflows/release.yml +0 -0
- {fcp_python-0.1.5 → fcp_python-0.1.6}/.mcp.json +0 -0
- {fcp_python-0.1.5 → fcp_python-0.1.6}/CLAUDE.md +0 -0
- {fcp_python-0.1.5 → fcp_python-0.1.6}/Makefile +0 -0
- {fcp_python-0.1.5 → fcp_python-0.1.6}/README.md +0 -0
- {fcp_python-0.1.5 → fcp_python-0.1.6}/src/fcp_python/__init__.py +0 -0
- {fcp_python-0.1.5 → fcp_python-0.1.6}/src/fcp_python/bridge.py +0 -0
- {fcp_python-0.1.5 → fcp_python-0.1.6}/src/fcp_python/domain/__init__.py +0 -0
- {fcp_python-0.1.5 → fcp_python-0.1.6}/src/fcp_python/domain/format.py +0 -0
- {fcp_python-0.1.5 → fcp_python-0.1.6}/src/fcp_python/domain/model.py +0 -0
- {fcp_python-0.1.5 → fcp_python-0.1.6}/src/fcp_python/domain/mutation.py +0 -0
- {fcp_python-0.1.5 → fcp_python-0.1.6}/src/fcp_python/domain/query.py +0 -0
- {fcp_python-0.1.5 → fcp_python-0.1.6}/src/fcp_python/domain/verbs.py +0 -0
- {fcp_python-0.1.5 → fcp_python-0.1.6}/src/fcp_python/lsp/__init__.py +0 -0
- {fcp_python-0.1.5 → fcp_python-0.1.6}/src/fcp_python/lsp/client.py +0 -0
- {fcp_python-0.1.5 → fcp_python-0.1.6}/src/fcp_python/lsp/lifecycle.py +0 -0
- {fcp_python-0.1.5 → fcp_python-0.1.6}/src/fcp_python/lsp/transport.py +0 -0
- {fcp_python-0.1.5 → fcp_python-0.1.6}/src/fcp_python/lsp/types.py +0 -0
- {fcp_python-0.1.5 → fcp_python-0.1.6}/src/fcp_python/lsp/workspace_edit.py +0 -0
- {fcp_python-0.1.5 → fcp_python-0.1.6}/src/fcp_python/resolver/__init__.py +0 -0
- {fcp_python-0.1.5 → fcp_python-0.1.6}/src/fcp_python/resolver/index.py +0 -0
- {fcp_python-0.1.5 → fcp_python-0.1.6}/src/fcp_python/resolver/pipeline.py +0 -0
- {fcp_python-0.1.5 → fcp_python-0.1.6}/src/fcp_python/resolver/selectors.py +0 -0
- {fcp_python-0.1.5 → fcp_python-0.1.6}/tests/__init__.py +0 -0
- {fcp_python-0.1.5 → fcp_python-0.1.6}/tests/test_bridge.py +0 -0
- {fcp_python-0.1.5 → fcp_python-0.1.6}/tests/test_client.py +0 -0
- {fcp_python-0.1.5 → fcp_python-0.1.6}/tests/test_format.py +0 -0
- {fcp_python-0.1.5 → fcp_python-0.1.6}/tests/test_index.py +0 -0
- {fcp_python-0.1.5 → fcp_python-0.1.6}/tests/test_lifecycle.py +0 -0
- {fcp_python-0.1.5 → fcp_python-0.1.6}/tests/test_model.py +0 -0
- {fcp_python-0.1.5 → fcp_python-0.1.6}/tests/test_mutation.py +0 -0
- {fcp_python-0.1.5 → fcp_python-0.1.6}/tests/test_pipeline.py +0 -0
- {fcp_python-0.1.5 → fcp_python-0.1.6}/tests/test_query.py +0 -0
- {fcp_python-0.1.5 → fcp_python-0.1.6}/tests/test_selectors.py +0 -0
- {fcp_python-0.1.5 → fcp_python-0.1.6}/tests/test_transport.py +0 -0
- {fcp_python-0.1.5 → fcp_python-0.1.6}/tests/test_types.py +0 -0
- {fcp_python-0.1.5 → fcp_python-0.1.6}/tests/test_verbs.py +0 -0
- {fcp_python-0.1.5 → fcp_python-0.1.6}/tests/test_workspace_edit.py +0 -0
|
@@ -26,11 +26,13 @@ from fcp_python.lsp.types import PublishDiagnosticsParams, SymbolInformation
|
|
|
26
26
|
from fcp_python.resolver.index import SymbolEntry, SymbolIndex
|
|
27
27
|
|
|
28
28
|
mcp = FastMCP(
|
|
29
|
-
"python
|
|
29
|
+
"fcp-python",
|
|
30
30
|
instructions=(
|
|
31
|
-
"FCP Python server for querying Python codebases via pylsp. "
|
|
32
|
-
"Use python_session to open a workspace
|
|
33
|
-
"
|
|
31
|
+
"FCP Python server for querying and refactoring Python codebases via pylsp. "
|
|
32
|
+
"Use python_session to open a workspace directory containing Python files, "
|
|
33
|
+
"python_query for read-only queries like finding definitions, references, "
|
|
34
|
+
"diagnostics, and symbols, python for refactoring operations, and python_help "
|
|
35
|
+
"for the full verb reference. Start every interaction with python_session."
|
|
34
36
|
),
|
|
35
37
|
)
|
|
36
38
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|