matimo-cli 0.1.2__tar.gz → 0.1.3__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.
@@ -1,22 +1,22 @@
1
- Metadata-Version: 2.4
1
+ Metadata-Version: 2.5
2
2
  Name: matimo-cli
3
- Version: 0.1.2
3
+ Version: 0.1.3
4
4
  Summary: Matimo CLI — tool package manager & MCP server launcher
5
5
  Author: Matimo
6
6
  License: MIT
7
- Keywords: ai-tools,cli,matimo,mcp
7
+ Keywords: ai-governance,ai-tools,cli,matimo,mcp,mcp-server,policy-engine
8
8
  Classifier: Development Status :: 3 - Alpha
9
9
  Classifier: License :: OSI Approved :: MIT License
10
10
  Classifier: Programming Language :: Python :: 3
11
11
  Requires-Python: >=3.11
12
12
  Requires-Dist: matimo-core[mcp]<0.2.0,>=0.1.0a14.post1
13
- Requires-Dist: mcp>=1.0
13
+ Requires-Dist: mcp>=1.28.1
14
14
  Requires-Dist: pyyaml>=6.0
15
15
  Description-Content-Type: text/markdown
16
16
 
17
17
  # matimo-cli
18
18
 
19
- > Command-line interface for [Matimo](https://matimo.dev) tool package manager & MCP server launcher.
19
+ > Command-line interface for [Matimo](https://matimo.dev) - tool package manager & MCP server launcher.
20
20
 
21
21
  [![PyPI](https://img.shields.io/pypi/v/matimo-cli)](https://pypi.org/project/matimo-cli/)
22
22
  [![Docs](https://img.shields.io/badge/docs-matimo.dev-blue)](https://matimo.dev/docs)
@@ -35,36 +35,32 @@ uv add matimo-cli
35
35
 
36
36
  ## Commands
37
37
 
38
- ### `matimo install` Install provider packages
38
+ ### `matimo install` - Install provider packages
39
39
 
40
40
  ```bash
41
41
  matimo install slack github gmail # install specific providers
42
- matimo install slack --upgrade # upgrade an existing provider
43
42
  ```
44
43
 
45
- ### `matimo list` List available tools
44
+ ### `matimo list` - List available tools
46
45
 
47
46
  ```bash
48
47
  matimo list # all loaded tools
49
- matimo list --provider slack # filter by provider
50
- matimo list --format json # JSON output
51
48
  ```
52
49
 
53
- ### `matimo search` Search for tools
50
+ ### `matimo search` - Search for tools
54
51
 
55
52
  ```bash
56
53
  matimo search email # text search over tool names + descriptions
57
54
  matimo search "send message"
58
55
  ```
59
56
 
60
- ### `matimo mcp` Start MCP server
57
+ ### `matimo mcp` - Start MCP server
61
58
 
62
59
  Serve all loaded tools over the [Model Context Protocol](https://matimo.dev/docs/MCP) so Claude Desktop, Cursor, or any MCP client can access them.
63
60
 
64
61
  ```bash
65
62
  matimo mcp # start on stdio (default)
66
63
  matimo mcp --transport http --port 3000 # start as HTTP server
67
- matimo mcp --name "my-agent" # set server name
68
64
  ```
69
65
 
70
66
  **Claude Desktop `claude_desktop_config.json`:**
@@ -79,34 +75,28 @@ matimo mcp --name "my-agent" # set server name
79
75
  }
80
76
  ```
81
77
 
82
- ### `matimo doctor` Diagnose your setup
78
+ ### `matimo doctor` - Diagnose your setup
83
79
 
84
80
  ```bash
85
81
  matimo doctor # check config, installed providers, connectivity
86
- matimo doctor --fix # attempt auto-repair
87
82
  ```
88
83
 
89
- ### `matimo review` Review agent-created tool definitions
84
+ ### `matimo review` - Review agent-created tool definitions
85
+
86
+ Operates on the current directory (or `$MATIMO_TOOL_DIR`), not an arbitrary path argument:
90
87
 
91
88
  ```bash
92
- matimo review ./agent-tools/ # interactive review of draft tools
89
+ matimo review list # list draft tools awaiting approval
90
+ matimo review approve my_tool # approve a pending tool
91
+ matimo review reject my_tool # reject/revoke a tool
93
92
  ```
94
93
 
95
94
  ---
96
95
 
97
96
  ## Configuration
98
97
 
99
- The CLI reads Matimo configuration from the environment or a `.matimo.yaml` file in the project root:
100
-
101
- ```yaml
102
- # .matimo.yaml
103
- toolPaths:
104
- - ./tools
105
- - ./agent-tools
106
- logLevel: info
107
- ```
108
-
109
- Environment variables:
98
+ The CLI reads configuration entirely from environment variables - there is no
99
+ `.matimo.yaml` config file:
110
100
 
111
101
  ```bash
112
102
  export MATIMO_LOG_LEVEL=info # silent | error | warn | info | debug
@@ -1,6 +1,6 @@
1
1
  # matimo-cli
2
2
 
3
- > Command-line interface for [Matimo](https://matimo.dev) tool package manager & MCP server launcher.
3
+ > Command-line interface for [Matimo](https://matimo.dev) - tool package manager & MCP server launcher.
4
4
 
5
5
  [![PyPI](https://img.shields.io/pypi/v/matimo-cli)](https://pypi.org/project/matimo-cli/)
6
6
  [![Docs](https://img.shields.io/badge/docs-matimo.dev-blue)](https://matimo.dev/docs)
@@ -19,36 +19,32 @@ uv add matimo-cli
19
19
 
20
20
  ## Commands
21
21
 
22
- ### `matimo install` Install provider packages
22
+ ### `matimo install` - Install provider packages
23
23
 
24
24
  ```bash
25
25
  matimo install slack github gmail # install specific providers
26
- matimo install slack --upgrade # upgrade an existing provider
27
26
  ```
28
27
 
29
- ### `matimo list` List available tools
28
+ ### `matimo list` - List available tools
30
29
 
31
30
  ```bash
32
31
  matimo list # all loaded tools
33
- matimo list --provider slack # filter by provider
34
- matimo list --format json # JSON output
35
32
  ```
36
33
 
37
- ### `matimo search` Search for tools
34
+ ### `matimo search` - Search for tools
38
35
 
39
36
  ```bash
40
37
  matimo search email # text search over tool names + descriptions
41
38
  matimo search "send message"
42
39
  ```
43
40
 
44
- ### `matimo mcp` Start MCP server
41
+ ### `matimo mcp` - Start MCP server
45
42
 
46
43
  Serve all loaded tools over the [Model Context Protocol](https://matimo.dev/docs/MCP) so Claude Desktop, Cursor, or any MCP client can access them.
47
44
 
48
45
  ```bash
49
46
  matimo mcp # start on stdio (default)
50
47
  matimo mcp --transport http --port 3000 # start as HTTP server
51
- matimo mcp --name "my-agent" # set server name
52
48
  ```
53
49
 
54
50
  **Claude Desktop `claude_desktop_config.json`:**
@@ -63,34 +59,28 @@ matimo mcp --name "my-agent" # set server name
63
59
  }
64
60
  ```
65
61
 
66
- ### `matimo doctor` Diagnose your setup
62
+ ### `matimo doctor` - Diagnose your setup
67
63
 
68
64
  ```bash
69
65
  matimo doctor # check config, installed providers, connectivity
70
- matimo doctor --fix # attempt auto-repair
71
66
  ```
72
67
 
73
- ### `matimo review` Review agent-created tool definitions
68
+ ### `matimo review` - Review agent-created tool definitions
69
+
70
+ Operates on the current directory (or `$MATIMO_TOOL_DIR`), not an arbitrary path argument:
74
71
 
75
72
  ```bash
76
- matimo review ./agent-tools/ # interactive review of draft tools
73
+ matimo review list # list draft tools awaiting approval
74
+ matimo review approve my_tool # approve a pending tool
75
+ matimo review reject my_tool # reject/revoke a tool
77
76
  ```
78
77
 
79
78
  ---
80
79
 
81
80
  ## Configuration
82
81
 
83
- The CLI reads Matimo configuration from the environment or a `.matimo.yaml` file in the project root:
84
-
85
- ```yaml
86
- # .matimo.yaml
87
- toolPaths:
88
- - ./tools
89
- - ./agent-tools
90
- logLevel: info
91
- ```
92
-
93
- Environment variables:
82
+ The CLI reads configuration entirely from environment variables - there is no
83
+ `.matimo.yaml` config file:
94
84
 
95
85
  ```bash
96
86
  export MATIMO_LOG_LEVEL=info # silent | error | warn | info | debug
@@ -4,13 +4,13 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "matimo-cli"
7
- version = "0.1.2"
7
+ version = "0.1.3"
8
8
  description = "Matimo CLI — tool package manager & MCP server launcher"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.11"
11
11
  license = { text = "MIT" }
12
12
  authors = [{ name = "Matimo" }]
13
- keywords = ["matimo", "cli", "ai-tools", "mcp"]
13
+ keywords = ["matimo", "cli", "ai-tools", "mcp", "mcp-server", "ai-governance", "policy-engine"]
14
14
  classifiers = [
15
15
  "Development Status :: 3 - Alpha",
16
16
  "Programming Language :: Python :: 3",
@@ -19,7 +19,7 @@ classifiers = [
19
19
  dependencies = [
20
20
  "matimo-core[mcp]>=0.1.0a14.post1,<0.2.0",
21
21
  "pyyaml>=6.0",
22
- "mcp>=1.0",
22
+ "mcp>=1.28.1",
23
23
  ]
24
24
 
25
25
  [project.scripts]
File without changes