ollmcp 0.1.9__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.
- ollmcp-0.1.9/PKG-INFO +37 -0
- ollmcp-0.1.9/README.md +25 -0
- ollmcp-0.1.9/ollmcp/cli.py +9 -0
- ollmcp-0.1.9/ollmcp.egg-info/PKG-INFO +37 -0
- ollmcp-0.1.9/ollmcp.egg-info/SOURCES.txt +9 -0
- ollmcp-0.1.9/ollmcp.egg-info/dependency_links.txt +1 -0
- ollmcp-0.1.9/ollmcp.egg-info/entry_points.txt +2 -0
- ollmcp-0.1.9/ollmcp.egg-info/requires.txt +1 -0
- ollmcp-0.1.9/ollmcp.egg-info/top_level.txt +1 -0
- ollmcp-0.1.9/pyproject.toml +24 -0
- ollmcp-0.1.9/setup.cfg +4 -0
ollmcp-0.1.9/PKG-INFO
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: ollmcp
|
|
3
|
+
Version: 0.1.9
|
|
4
|
+
Summary: CLI for MCP Client for Ollama - An easy-to-use command for interacting with Ollama through MCP
|
|
5
|
+
Author: Jonathan Löwenstern
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/jonigl/mcp-client-for-ollama
|
|
8
|
+
Project-URL: Issues, https://github.com/jonigl/mcp-client-for-ollama/issues
|
|
9
|
+
Requires-Python: >=3.10
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
Requires-Dist: mcp-client-for-ollama==0.1.9
|
|
12
|
+
|
|
13
|
+
# ollmcp
|
|
14
|
+
|
|
15
|
+
A command-line interface for connecting to MCP servers using Ollama.
|
|
16
|
+
|
|
17
|
+
## Installation
|
|
18
|
+
|
|
19
|
+
```
|
|
20
|
+
pip install ollmcp
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
## Usage
|
|
24
|
+
|
|
25
|
+
```
|
|
26
|
+
ollmcp [options]
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
## Description
|
|
30
|
+
|
|
31
|
+
This is a lightweight package that provides the `ollmcp` command-line interface. It's a convenience wrapper around the main [`mcp-client-for-ollama`](https://github.com/jonigl/mcp-client-for-ollama) package.
|
|
32
|
+
|
|
33
|
+
The actual implementation is contained in the main package. This package simply provides a more convenient and shorter name for installing the CLI tool.
|
|
34
|
+
|
|
35
|
+
## License
|
|
36
|
+
|
|
37
|
+
MIT
|
ollmcp-0.1.9/README.md
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# ollmcp
|
|
2
|
+
|
|
3
|
+
A command-line interface for connecting to MCP servers using Ollama.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```
|
|
8
|
+
pip install ollmcp
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Usage
|
|
12
|
+
|
|
13
|
+
```
|
|
14
|
+
ollmcp [options]
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
## Description
|
|
18
|
+
|
|
19
|
+
This is a lightweight package that provides the `ollmcp` command-line interface. It's a convenience wrapper around the main [`mcp-client-for-ollama`](https://github.com/jonigl/mcp-client-for-ollama) package.
|
|
20
|
+
|
|
21
|
+
The actual implementation is contained in the main package. This package simply provides a more convenient and shorter name for installing the CLI tool.
|
|
22
|
+
|
|
23
|
+
## License
|
|
24
|
+
|
|
25
|
+
MIT
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
#!/usr/bin/env python
|
|
2
|
+
"""Command-line interface for the MCP Client for Ollama."""
|
|
3
|
+
|
|
4
|
+
# Import the CLI functionality from the main package
|
|
5
|
+
from mcp_client_for_ollama.ollmcp.cli import run_cli
|
|
6
|
+
|
|
7
|
+
# Re-export the run_cli function
|
|
8
|
+
if __name__ == "__main__":
|
|
9
|
+
run_cli()
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: ollmcp
|
|
3
|
+
Version: 0.1.9
|
|
4
|
+
Summary: CLI for MCP Client for Ollama - An easy-to-use command for interacting with Ollama through MCP
|
|
5
|
+
Author: Jonathan Löwenstern
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/jonigl/mcp-client-for-ollama
|
|
8
|
+
Project-URL: Issues, https://github.com/jonigl/mcp-client-for-ollama/issues
|
|
9
|
+
Requires-Python: >=3.10
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
Requires-Dist: mcp-client-for-ollama==0.1.9
|
|
12
|
+
|
|
13
|
+
# ollmcp
|
|
14
|
+
|
|
15
|
+
A command-line interface for connecting to MCP servers using Ollama.
|
|
16
|
+
|
|
17
|
+
## Installation
|
|
18
|
+
|
|
19
|
+
```
|
|
20
|
+
pip install ollmcp
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
## Usage
|
|
24
|
+
|
|
25
|
+
```
|
|
26
|
+
ollmcp [options]
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
## Description
|
|
30
|
+
|
|
31
|
+
This is a lightweight package that provides the `ollmcp` command-line interface. It's a convenience wrapper around the main [`mcp-client-for-ollama`](https://github.com/jonigl/mcp-client-for-ollama) package.
|
|
32
|
+
|
|
33
|
+
The actual implementation is contained in the main package. This package simply provides a more convenient and shorter name for installing the CLI tool.
|
|
34
|
+
|
|
35
|
+
## License
|
|
36
|
+
|
|
37
|
+
MIT
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
mcp-client-for-ollama==0.1.9
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
ollmcp
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "ollmcp"
|
|
3
|
+
version = "0.1.9"
|
|
4
|
+
description = "CLI for MCP Client for Ollama - An easy-to-use command for interacting with Ollama through MCP"
|
|
5
|
+
readme = "README.md"
|
|
6
|
+
requires-python = ">=3.10"
|
|
7
|
+
license = {text = "MIT"}
|
|
8
|
+
authors = [
|
|
9
|
+
{name = "Jonathan Löwenstern"}
|
|
10
|
+
]
|
|
11
|
+
dependencies = [
|
|
12
|
+
"mcp-client-for-ollama==0.1.9"
|
|
13
|
+
]
|
|
14
|
+
|
|
15
|
+
[project.scripts]
|
|
16
|
+
ollmcp = "ollmcp.cli:run_cli"
|
|
17
|
+
|
|
18
|
+
[build-system]
|
|
19
|
+
requires = ["setuptools>=61.0"]
|
|
20
|
+
build-backend = "setuptools.build_meta"
|
|
21
|
+
|
|
22
|
+
[project.urls]
|
|
23
|
+
Homepage = "https://github.com/jonigl/mcp-client-for-ollama"
|
|
24
|
+
Issues = "https://github.com/jonigl/mcp-client-for-ollama/issues"
|
ollmcp-0.1.9/setup.cfg
ADDED