holoviz-mcp 0.4.0__py3-none-any.whl
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.
- holoviz_mcp/__init__.py +18 -0
- holoviz_mcp/apps/__init__.py +1 -0
- holoviz_mcp/apps/configuration_viewer.py +116 -0
- holoviz_mcp/apps/holoviz_get_best_practices.py +173 -0
- holoviz_mcp/apps/holoviz_search.py +319 -0
- holoviz_mcp/apps/hvplot_get_docstring.py +255 -0
- holoviz_mcp/apps/hvplot_get_signature.py +252 -0
- holoviz_mcp/apps/hvplot_list_plot_types.py +83 -0
- holoviz_mcp/apps/panel_get_component.py +496 -0
- holoviz_mcp/apps/panel_get_component_parameters.py +467 -0
- holoviz_mcp/apps/panel_list_components.py +311 -0
- holoviz_mcp/apps/panel_list_packages.py +71 -0
- holoviz_mcp/apps/panel_search_components.py +312 -0
- holoviz_mcp/cli.py +75 -0
- holoviz_mcp/client.py +94 -0
- holoviz_mcp/config/__init__.py +29 -0
- holoviz_mcp/config/config.yaml +178 -0
- holoviz_mcp/config/loader.py +316 -0
- holoviz_mcp/config/models.py +208 -0
- holoviz_mcp/config/resources/best-practices/holoviews.md +423 -0
- holoviz_mcp/config/resources/best-practices/hvplot.md +465 -0
- holoviz_mcp/config/resources/best-practices/panel-material-ui.md +318 -0
- holoviz_mcp/config/resources/best-practices/panel.md +562 -0
- holoviz_mcp/config/schema.json +228 -0
- holoviz_mcp/holoviz_mcp/__init__.py +1 -0
- holoviz_mcp/holoviz_mcp/data.py +970 -0
- holoviz_mcp/holoviz_mcp/models.py +21 -0
- holoviz_mcp/holoviz_mcp/pages_design.md +407 -0
- holoviz_mcp/holoviz_mcp/server.py +220 -0
- holoviz_mcp/hvplot_mcp/__init__.py +1 -0
- holoviz_mcp/hvplot_mcp/server.py +146 -0
- holoviz_mcp/panel_mcp/__init__.py +17 -0
- holoviz_mcp/panel_mcp/data.py +319 -0
- holoviz_mcp/panel_mcp/models.py +124 -0
- holoviz_mcp/panel_mcp/server.py +443 -0
- holoviz_mcp/py.typed +0 -0
- holoviz_mcp/serve.py +36 -0
- holoviz_mcp/server.py +86 -0
- holoviz_mcp/shared/__init__.py +1 -0
- holoviz_mcp/shared/extract_tools.py +74 -0
- holoviz_mcp/thumbnails/configuration_viewer.png +0 -0
- holoviz_mcp/thumbnails/holoviz_get_best_practices.png +0 -0
- holoviz_mcp/thumbnails/holoviz_search.png +0 -0
- holoviz_mcp/thumbnails/hvplot_get_docstring.png +0 -0
- holoviz_mcp/thumbnails/hvplot_get_signature.png +0 -0
- holoviz_mcp/thumbnails/hvplot_list_plot_types.png +0 -0
- holoviz_mcp/thumbnails/panel_get_component.png +0 -0
- holoviz_mcp/thumbnails/panel_get_component_parameters.png +0 -0
- holoviz_mcp/thumbnails/panel_list_components.png +0 -0
- holoviz_mcp/thumbnails/panel_list_packages.png +0 -0
- holoviz_mcp/thumbnails/panel_search_components.png +0 -0
- holoviz_mcp-0.4.0.dist-info/METADATA +216 -0
- holoviz_mcp-0.4.0.dist-info/RECORD +56 -0
- holoviz_mcp-0.4.0.dist-info/WHEEL +4 -0
- holoviz_mcp-0.4.0.dist-info/entry_points.txt +2 -0
- holoviz_mcp-0.4.0.dist-info/licenses/LICENSE.txt +30 -0
|
@@ -0,0 +1,216 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: holoviz-mcp
|
|
3
|
+
Version: 0.4.0
|
|
4
|
+
Summary: A Model Context Protocol (MCP) server for the HoloViz ecosystem
|
|
5
|
+
Project-URL: Homepage, https://github.com/MarcSkovMadsen/holoviz-mcp
|
|
6
|
+
Project-URL: Source, https://github.com/MarcSkovMadsen/holoviz-mcp
|
|
7
|
+
Author-email: MarcSkovMadsen <marc.skov.madsen@gmail.com>
|
|
8
|
+
Maintainer-email: MarcSkovMadsen <marc.skov.madsen@gmail.com>
|
|
9
|
+
License: BSD
|
|
10
|
+
License-File: LICENSE.txt
|
|
11
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
12
|
+
Classifier: Intended Audience :: Developers
|
|
13
|
+
Classifier: Intended Audience :: Science/Research
|
|
14
|
+
Classifier: License :: OSI Approved :: BSD License
|
|
15
|
+
Classifier: Natural Language :: English
|
|
16
|
+
Classifier: Operating System :: OS Independent
|
|
17
|
+
Classifier: Programming Language :: Python :: 3
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
21
|
+
Classifier: Topic :: Scientific/Engineering
|
|
22
|
+
Classifier: Topic :: Software Development :: Libraries
|
|
23
|
+
Requires-Python: >=3.11
|
|
24
|
+
Requires-Dist: certifi
|
|
25
|
+
Requires-Dist: chromadb
|
|
26
|
+
Requires-Dist: fastmcp
|
|
27
|
+
Requires-Dist: gitpython
|
|
28
|
+
Requires-Dist: matplotlib
|
|
29
|
+
Requires-Dist: nbconvert
|
|
30
|
+
Requires-Dist: packaging
|
|
31
|
+
Requires-Dist: panel
|
|
32
|
+
Requires-Dist: panel-material-ui
|
|
33
|
+
Requires-Dist: plotly
|
|
34
|
+
Requires-Dist: pydantic>=2.0
|
|
35
|
+
Requires-Dist: pyyaml
|
|
36
|
+
Requires-Dist: typer
|
|
37
|
+
Requires-Dist: watchfiles
|
|
38
|
+
Provides-Extra: dev
|
|
39
|
+
Requires-Dist: ipykernel; extra == 'dev'
|
|
40
|
+
Requires-Dist: mkdocs; extra == 'dev'
|
|
41
|
+
Requires-Dist: mkdocs-material; extra == 'dev'
|
|
42
|
+
Requires-Dist: mkdocs-pycafe; extra == 'dev'
|
|
43
|
+
Requires-Dist: mkdocstrings[python]; extra == 'dev'
|
|
44
|
+
Requires-Dist: pre-commit; extra == 'dev'
|
|
45
|
+
Requires-Dist: pytest; extra == 'dev'
|
|
46
|
+
Requires-Dist: pytest-asyncio; extra == 'dev'
|
|
47
|
+
Requires-Dist: pytest-rerunfailures; extra == 'dev'
|
|
48
|
+
Requires-Dist: pytest-xdist; extra == 'dev'
|
|
49
|
+
Requires-Dist: types-pyyaml; extra == 'dev'
|
|
50
|
+
Provides-Extra: mypy
|
|
51
|
+
Requires-Dist: mypy; extra == 'mypy'
|
|
52
|
+
Requires-Dist: types-requests; extra == 'mypy'
|
|
53
|
+
Requires-Dist: typing-extensions; extra == 'mypy'
|
|
54
|
+
Provides-Extra: panel-extensions
|
|
55
|
+
Requires-Dist: panel-full-calendar; extra == 'panel-extensions'
|
|
56
|
+
Requires-Dist: panel-graphic-walker; extra == 'panel-extensions'
|
|
57
|
+
Requires-Dist: panel-neuroglancer; extra == 'panel-extensions'
|
|
58
|
+
Requires-Dist: panel-precision-slider; extra == 'panel-extensions'
|
|
59
|
+
Requires-Dist: panel-web-llm; extra == 'panel-extensions'
|
|
60
|
+
Description-Content-Type: text/markdown
|
|
61
|
+
|
|
62
|
+
# ✨ HoloViz MCP
|
|
63
|
+
|
|
64
|
+
[](https://github.com/MarcSkovMadsen/holoviz-mcp/actions/workflows/ci.yml)
|
|
65
|
+
[](https://github.com/MarcSkovMadsen/holoviz-mcp/actions/workflows/docker.yml)
|
|
66
|
+
[](https://prefix.dev/channels/conda-forge/packages/holoviz-mcp)
|
|
67
|
+
[](https://pypi.org/project/holoviz-mcp)
|
|
68
|
+
[](https://pypi.org/project/holoviz-mcp)
|
|
69
|
+
[](https://marcskovmadsen.github.io/holoviz-mcp/)
|
|
70
|
+
|
|
71
|
+
A comprehensive [Model Context Protocol](https://modelcontextprotocol.io/introduction) (MCP) server that provides intelligent access to the [HoloViz](https://holoviz.org/) ecosystem, enabling AI assistants to help you build interactive dashboards and data visualizations with [Panel](https://panel.holoviz.org/), [hvPlot](https://hvplot.holoviz.org), [Lumen](https://lumen.holoviz.org/), [Datashader](https://datashader.org/) and your favorite Python libraries.
|
|
72
|
+
|
|
73
|
+
[](https://holoviz.org)
|
|
74
|
+
|
|
75
|
+
**📖 [Full Documentation](https://marcskovmadsen.github.io/holoviz-mcp/)** | **🚀 [Quick Start](https://marcskovmadsen.github.io/holoviz-mcp/tutorials/getting-started/)** | **🐳 [Docker Guide](https://marcskovmadsen.github.io/holoviz-mcp/how-to/docker/)**
|
|
76
|
+
|
|
77
|
+
## ✨ What This Provides
|
|
78
|
+
|
|
79
|
+
**Documentation Access**: Search through comprehensive HoloViz documentation, including tutorials, reference guides, how-to guides, and API references.
|
|
80
|
+
|
|
81
|
+
**Component Intelligence**: Discover and understand 100+ Panel components with detailed parameter information, usage examples, and best practices. Similar features are available for hvPlot.
|
|
82
|
+
|
|
83
|
+
**Extension Support**: Automatic detection and information about Panel extensions such as Material UI, Graphic Walker, and other community packages.
|
|
84
|
+
|
|
85
|
+
**Smart Context**: Get contextual code assistance that understands your development environment and available packages.
|
|
86
|
+
|
|
87
|
+
## 🎯 Why Use This?
|
|
88
|
+
|
|
89
|
+
- **⚡ Faster Development**: No more hunting through docs - get instant, accurate component information.
|
|
90
|
+
- **🎨 Better Design**: AI suggests appropriate components and layout patterns for your use case.
|
|
91
|
+
- **🧠 Smart Context**: The assistant understands your environment and available Panel extensions.
|
|
92
|
+
- **📖 Always Updated**: Documentation stays current with the latest HoloViz ecosystem changes.
|
|
93
|
+
- **🔧 Zero Setup**: Works immediately with any MCP-compatible AI assistant.
|
|
94
|
+
|
|
95
|
+
## 🚀 Quick Start
|
|
96
|
+
|
|
97
|
+
### Requirements
|
|
98
|
+
|
|
99
|
+
- Python 3.11+ and [uv](https://docs.astral.sh/uv/)
|
|
100
|
+
- VS Code with GitHub Copilot, Claude Desktop, Cursor, or any other MCP-compatible client
|
|
101
|
+
|
|
102
|
+
### Installation
|
|
103
|
+
|
|
104
|
+
Install HoloViz MCP as a [uv tool](https://docs.astral.sh/uv/concepts/tools/):
|
|
105
|
+
|
|
106
|
+
```bash
|
|
107
|
+
uv tool install holoviz-mcp[panel-extensions]
|
|
108
|
+
```
|
|
109
|
+
|
|
110
|
+
Create the documentation index (takes up to 10 minutes on first run):
|
|
111
|
+
|
|
112
|
+
```bash
|
|
113
|
+
uvx holoviz-mcp update
|
|
114
|
+
```
|
|
115
|
+
|
|
116
|
+
### Configure Your IDE
|
|
117
|
+
|
|
118
|
+
**VS Code + GitHub Copilot**: Add this configuration to your `mcp.json`:
|
|
119
|
+
|
|
120
|
+
```json
|
|
121
|
+
{
|
|
122
|
+
"servers": {
|
|
123
|
+
"holoviz": {
|
|
124
|
+
"type": "stdio",
|
|
125
|
+
"command": "uvx",
|
|
126
|
+
"args": ["holoviz-mcp"]
|
|
127
|
+
}
|
|
128
|
+
},
|
|
129
|
+
"inputs": []
|
|
130
|
+
}
|
|
131
|
+
```
|
|
132
|
+
|
|
133
|
+
**Claude Desktop**: Add to your configuration file (`~/Library/Application Support/Claude/claude_desktop_config.json` on macOS):
|
|
134
|
+
|
|
135
|
+
```json
|
|
136
|
+
{
|
|
137
|
+
"mcpServers": {
|
|
138
|
+
"holoviz": {
|
|
139
|
+
"command": "uvx",
|
|
140
|
+
"args": ["holoviz-mcp"]
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
```
|
|
145
|
+
|
|
146
|
+
**Cursor**: Go to `Cursor Settings` → `Features` → `Model Context Protocol` → `Add Server`:
|
|
147
|
+
|
|
148
|
+
```json
|
|
149
|
+
{
|
|
150
|
+
"name": "holoviz",
|
|
151
|
+
"command": "uvx",
|
|
152
|
+
"args": ["holoviz-mcp"]
|
|
153
|
+
}
|
|
154
|
+
```
|
|
155
|
+
|
|
156
|
+
Restart your IDE and start asking about Panel components!
|
|
157
|
+
|
|
158
|
+
### Using Docker
|
|
159
|
+
|
|
160
|
+
For containerized deployment:
|
|
161
|
+
|
|
162
|
+
```bash
|
|
163
|
+
# Pull the latest image
|
|
164
|
+
docker pull ghcr.io/marcskovmadsen/holoviz-mcp:latest
|
|
165
|
+
|
|
166
|
+
# Run with HTTP transport
|
|
167
|
+
docker run -it --rm \
|
|
168
|
+
-p 8000:8000 \
|
|
169
|
+
-e HOLOVIZ_MCP_TRANSPORT=http \
|
|
170
|
+
-v ~/.holoviz-mcp:/root/.holoviz-mcp \
|
|
171
|
+
ghcr.io/marcskovmadsen/holoviz-mcp:latest
|
|
172
|
+
```
|
|
173
|
+
|
|
174
|
+
See the [Docker Guide](https://marcskovmadsen.github.io/holoviz-mcp/how-to/docker/) for more details.
|
|
175
|
+
|
|
176
|
+
## 💡 Example Usage
|
|
177
|
+
|
|
178
|
+
Ask your AI assistant questions like:
|
|
179
|
+
|
|
180
|
+
- *"What Panel components are available for user input?"*
|
|
181
|
+
- *"Show me how to create a dashboard with Panel Material UI components"*
|
|
182
|
+
- *"What parameters does the Button component accept?"*
|
|
183
|
+
- *"How do I deploy a Panel application?"*
|
|
184
|
+
|
|
185
|
+
Watch the [HoloViz MCP Introduction](https://youtu.be/M-YUZWEeSDA) on YouTube to see it in action.
|
|
186
|
+
|
|
187
|
+
[](https://youtu.be/M-YUZWEeSDA)
|
|
188
|
+
|
|
189
|
+
## 📚 Learn More
|
|
190
|
+
|
|
191
|
+
Check out the [`holoviz-mcp` documentation](https://marcskovmadsen.github.io/holoviz-mcp/):
|
|
192
|
+
|
|
193
|
+
- **[Tutorials](https://marcskovmadsen.github.io/holoviz-mcp/tutorials/getting-started/)**: Step-by-step guides to get you started
|
|
194
|
+
- **[How-To Guides](https://marcskovmadsen.github.io/holoviz-mcp/how-to/installation/)**: Practical guides for common tasks
|
|
195
|
+
- **[Explanation](https://marcskovmadsen.github.io/holoviz-mcp/explanation/architecture/)**: Understanding concepts and architecture
|
|
196
|
+
- **[Reference](https://marcskovmadsen.github.io/holoviz-mcp/reference/holoviz_mcp/)**: API documentation and technical details
|
|
197
|
+
|
|
198
|
+
## ❤️ Contributing
|
|
199
|
+
|
|
200
|
+
We welcome contributions! See our [Contributing Guide](https://marcskovmadsen.github.io/holoviz-mcp/contributing/) for details.
|
|
201
|
+
|
|
202
|
+
## 📄 License
|
|
203
|
+
|
|
204
|
+
HoloViz MCP is licensed under the [BSD 3-Clause License](LICENSE.txt).
|
|
205
|
+
|
|
206
|
+
## 🔗 Links
|
|
207
|
+
|
|
208
|
+
- **GitHub**: [MarcSkovMadsen/holoviz-mcp](https://github.com/MarcSkovMadsen/holoviz-mcp)
|
|
209
|
+
- **Documentation**: [marcskovmadsen.github.io/holoviz-mcp](https://marcskovmadsen.github.io/holoviz-mcp/)
|
|
210
|
+
- **PyPI**: [pypi.org/project/holoviz-mcp](https://pypi.org/project/holoviz-mcp)
|
|
211
|
+
- **Docker**: [ghcr.io/marcskovmadsen/holoviz-mcp](https://github.com/MarcSkovMadsen/holoviz-mcp/pkgs/container/holoviz-mcp)
|
|
212
|
+
- **HoloViz Community**: [Discord](https://discord.gg/AXRHnJU6sP) | [Discourse](https://discourse.holoviz.org/)
|
|
213
|
+
|
|
214
|
+
---
|
|
215
|
+
|
|
216
|
+
**Note**: This MCP server can execute arbitrary Python code when serving Panel applications (configurable, enabled by default). See [Security Considerations](https://marcskovmadsen.github.io/holoviz-mcp/explanation/security/) for details.
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
holoviz_mcp/__init__.py,sha256=81mxQFZOa70OoQ9UOHSzrcC9NnZbca3q9r5rKcuMrIM,485
|
|
2
|
+
holoviz_mcp/cli.py,sha256=3FWUNoYVCAkYfZzLqXH_a7twSSGCPqArsUxWaowWFjk,1823
|
|
3
|
+
holoviz_mcp/client.py,sha256=73IHEDpEYGq5Pk5UsSvo-rOKt2XGPZMNos8h2UmhpYY,2881
|
|
4
|
+
holoviz_mcp/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
5
|
+
holoviz_mcp/serve.py,sha256=XRVzSm4DPreBdZQpeVFupLYjCs3_2NFm8nvFjKMzpLE,1055
|
|
6
|
+
holoviz_mcp/server.py,sha256=cZFr9_sEQW1csC-GT74VK53fzj4KhU_X1PAAvfBlc2I,3527
|
|
7
|
+
holoviz_mcp/apps/__init__.py,sha256=Qiius2mdB0CjCRGsJJvfX4JBSkFnED8h4IipavBD32Y,34
|
|
8
|
+
holoviz_mcp/apps/configuration_viewer.py,sha256=4wTcZBXHnLEJmlXSGpAprJzkq1d3TYNh5JSDWbtekCs,4037
|
|
9
|
+
holoviz_mcp/apps/holoviz_get_best_practices.py,sha256=pVooqK4HPSUCEtL_FH_5i98h8-mLbMe5ZKtKvNx7uzs,6467
|
|
10
|
+
holoviz_mcp/apps/holoviz_search.py,sha256=Jm9MlJEU-L4HqSo9BbNbTEoK2H1o2UhD_1JdF738RAA,11390
|
|
11
|
+
holoviz_mcp/apps/hvplot_get_docstring.py,sha256=Ud1-eE3DF2i2Cz6wAHas9aJjAQqxKzL9TEGN0mnOHVQ,9120
|
|
12
|
+
holoviz_mcp/apps/hvplot_get_signature.py,sha256=RmHfQ0m20ghK4XcahhYLo_xOgdCQtQMVFlU3cgRv9_o,8489
|
|
13
|
+
holoviz_mcp/apps/hvplot_list_plot_types.py,sha256=4i6k3puO-z5RQSID8Zh4HJsp9sbr6aX-9SGjwMg2zCw,2577
|
|
14
|
+
holoviz_mcp/apps/panel_get_component.py,sha256=AgezVnBF5j6cvsIheC95rV1o4NXDvn_0WqUHS2BvlRE,18769
|
|
15
|
+
holoviz_mcp/apps/panel_get_component_parameters.py,sha256=xw4xRJw9T2UvlPdQF1JkxRq3PLhEl9OgeTsrBU_Pb-0,17797
|
|
16
|
+
holoviz_mcp/apps/panel_list_components.py,sha256=TESW9D-ILLeN4VcHeeExHM1mud4eAF2EelaVbGf4Gs4,10786
|
|
17
|
+
holoviz_mcp/apps/panel_list_packages.py,sha256=f0Kkgo7JMtECOLtOyXloziRIFaojNUz6u1W4lhbVtWo,2106
|
|
18
|
+
holoviz_mcp/apps/panel_search_components.py,sha256=xAQoa6ChqIhqW4Cibg_uwfFlLrZ2owTbBZ0iB-k2F8g,10402
|
|
19
|
+
holoviz_mcp/config/__init__.py,sha256=ixvS5i6-NiUnHQLknB46r2gCqK74AoIdpfqXDQniu6Y,707
|
|
20
|
+
holoviz_mcp/config/config.yaml,sha256=QdE5aWKtVCM3h469tSKyHIMj3vgUL02_nGMGUgPwZiY,5103
|
|
21
|
+
holoviz_mcp/config/loader.py,sha256=xFJuMjm0t9PWVVV8RB4-JBFmWXykv7kERPlJTsBAzhI,11312
|
|
22
|
+
holoviz_mcp/config/models.py,sha256=HO6bNo4IvPAroXnZbX9k-IT01sx0txzaSfPKKv0WDfA,9018
|
|
23
|
+
holoviz_mcp/config/schema.json,sha256=qFxsZr03bPBPkCqHTY7ecSAVVEGyFRj2EExKKu7_PVg,7367
|
|
24
|
+
holoviz_mcp/config/resources/best-practices/holoviews.md,sha256=TN3WG9yF-520k8EuMwM9dg9W5YGqsgSx7NQetePh9x4,18090
|
|
25
|
+
holoviz_mcp/config/resources/best-practices/hvplot.md,sha256=gEydhz-RzqI91qh5dFjGJ9Tx7XLvhCpQGQ6GrI8nCjU,18934
|
|
26
|
+
holoviz_mcp/config/resources/best-practices/panel-material-ui.md,sha256=McZO7rEmSEukSspVaaqbz3CqiemU3SPbl__Nkdpm6pI,12324
|
|
27
|
+
holoviz_mcp/config/resources/best-practices/panel.md,sha256=DcRe0vKrtBNJQj7FAbKBtabt-JVF1yKVuy3mCspCfgU,24706
|
|
28
|
+
holoviz_mcp/holoviz_mcp/__init__.py,sha256=SrkGEFh3UwvSy1kPKZGWi91DDChrhxP8kiewZWotaP8,24
|
|
29
|
+
holoviz_mcp/holoviz_mcp/data.py,sha256=esoEMKs721cZuewSwUWJQNDOx0SlsP9NgUPx8aar1QM,41188
|
|
30
|
+
holoviz_mcp/holoviz_mcp/models.py,sha256=b1UM4FNBnzxA3LO_0b--WskD0c0BHTqLspgNIwnql88,1174
|
|
31
|
+
holoviz_mcp/holoviz_mcp/pages_design.md,sha256=bLfkZowizkJaQs_zVDsskTUKoOfOadRy6Hr7WMH8P3Q,15055
|
|
32
|
+
holoviz_mcp/holoviz_mcp/server.py,sha256=q0cn9ToOs0GsX4HfwVFyh2pVZjsaIBglWPqkPGCJhFU,8158
|
|
33
|
+
holoviz_mcp/hvplot_mcp/__init__.py,sha256=ypVtR70MsluzGvmfedR3j1wEoQfiq88ZZHka7ztbTpI,25
|
|
34
|
+
holoviz_mcp/hvplot_mcp/server.py,sha256=Krxie7cevS9zTP7IHnVXi6lxjdlV3zFc_GQ2NA10qLU,4721
|
|
35
|
+
holoviz_mcp/panel_mcp/__init__.py,sha256=LVTDu3ARK9E4yIP40W36-DMl2IF6189g6pbGkGUZV4k,564
|
|
36
|
+
holoviz_mcp/panel_mcp/data.py,sha256=nGGWyoK6Qq_-c2q0dKhmL7DEoyQPKxo60KaJ_6ZVeIw,10927
|
|
37
|
+
holoviz_mcp/panel_mcp/models.py,sha256=u7sGtJAtp11Bp3eT8ICRctma52VEAGn1xhEeknFDWMo,5126
|
|
38
|
+
holoviz_mcp/panel_mcp/server.py,sha256=aisg2bSwfFmvTFCHG2DjKzGxOM0TnKgOzt5De4cjgvA,17339
|
|
39
|
+
holoviz_mcp/shared/__init__.py,sha256=_1R5D4cFY_k_albyuvYmguKgjuzuQKbKKGn6tu9z4dM,51
|
|
40
|
+
holoviz_mcp/shared/extract_tools.py,sha256=01vq0HsvueBrbiV5VP3UKpguN8aQzOm0eatUhGRN7cA,2846
|
|
41
|
+
holoviz_mcp/thumbnails/configuration_viewer.png,sha256=aqd6orifdpHZASRli6YNOmaVlP-6COLpapzdNmLrOfQ,42589
|
|
42
|
+
holoviz_mcp/thumbnails/holoviz_get_best_practices.png,sha256=llgLpUp6o_pK5dJg10B1mzkCAw0q1eJ_y5oWZ4BN304,120287
|
|
43
|
+
holoviz_mcp/thumbnails/holoviz_search.png,sha256=kCVxEVEnN4YGcfR0N-UYFGc0D8-7Gb67tQ9QJvEIPgg,259692
|
|
44
|
+
holoviz_mcp/thumbnails/hvplot_get_docstring.png,sha256=bqXgUPQL1JPRsyqrC02i-jfU0A0CbJtKV5xZTKL3J8A,110714
|
|
45
|
+
holoviz_mcp/thumbnails/hvplot_get_signature.png,sha256=cjWmRemcbLDtqiVKGiiwUSLiw0IQ9aRzAFgFc4jXnak,101385
|
|
46
|
+
holoviz_mcp/thumbnails/hvplot_list_plot_types.png,sha256=9XKWRR9KAIK6IHLsRGjJPJqNllTQJMvh3rbVmgdgNC0,44314
|
|
47
|
+
holoviz_mcp/thumbnails/panel_get_component.png,sha256=AS543TivB_wfgDkIp9ugXhBimeWL5rtRbgQ1Ep01O3Q,108412
|
|
48
|
+
holoviz_mcp/thumbnails/panel_get_component_parameters.png,sha256=6Jilq28agX4vbelqlPM4CyjUAwgRr7HpzfVVVGeAPqI,194222
|
|
49
|
+
holoviz_mcp/thumbnails/panel_list_components.png,sha256=rao6IM1lz6nLGY_2ynDq0D7al8lSSisMmySCXgFDCbs,69345
|
|
50
|
+
holoviz_mcp/thumbnails/panel_list_packages.png,sha256=xsGHeblrW1JjUUGCVXTQ_i3tIUmWL0QLnz4nVZE5cz0,17971
|
|
51
|
+
holoviz_mcp/thumbnails/panel_search_components.png,sha256=UYLV_rzIwWF8FKiEO5I7qOmikhdTGcz1yRA2_0yOsXM,127794
|
|
52
|
+
holoviz_mcp-0.4.0.dist-info/METADATA,sha256=G1vLKwNklipQgZ6ssGLKeu0LQjwwwmXPeIOFrUEuxU0,9220
|
|
53
|
+
holoviz_mcp-0.4.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
54
|
+
holoviz_mcp-0.4.0.dist-info/entry_points.txt,sha256=cf6ATw14C4Ra3PgtlMLX0p9qY_DyY-DIYYurGiGPBTg,57
|
|
55
|
+
holoviz_mcp-0.4.0.dist-info/licenses/LICENSE.txt,sha256=Jqbh7noYJKpAY0CUXf5UeMNtew5vLlLHmRbBrIo6XrE,1515
|
|
56
|
+
holoviz_mcp-0.4.0.dist-info/RECORD,,
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
Copyright (c) 2018, HoloViz team (holoviz.org).
|
|
2
|
+
All rights reserved.
|
|
3
|
+
|
|
4
|
+
Redistribution and use in source and binary forms, with or without
|
|
5
|
+
modification, are permitted provided that the following conditions are
|
|
6
|
+
met:
|
|
7
|
+
|
|
8
|
+
* Redistributions of source code must retain the above copyright
|
|
9
|
+
notice, this list of conditions and the following disclaimer.
|
|
10
|
+
|
|
11
|
+
* Redistributions in binary form must reproduce the above copyright
|
|
12
|
+
notice, this list of conditions and the following disclaimer in the
|
|
13
|
+
documentation and/or other materials provided with the
|
|
14
|
+
distribution.
|
|
15
|
+
|
|
16
|
+
* Neither the name of the copyright holder nor the names of any
|
|
17
|
+
contributors may be used to endorse or promote products derived
|
|
18
|
+
from this software without specific prior written permission.
|
|
19
|
+
|
|
20
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
21
|
+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
22
|
+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
23
|
+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
24
|
+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
25
|
+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
26
|
+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
27
|
+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
28
|
+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
29
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
30
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|