empirica-mcp 1.0.2__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.
- empirica_mcp-1.0.2/PKG-INFO +88 -0
- empirica_mcp-1.0.2/README.md +66 -0
- empirica_mcp-1.0.2/empirica_mcp/server.py +1748 -0
- empirica_mcp-1.0.2/empirica_mcp.egg-info/PKG-INFO +88 -0
- empirica_mcp-1.0.2/empirica_mcp.egg-info/SOURCES.txt +9 -0
- empirica_mcp-1.0.2/empirica_mcp.egg-info/dependency_links.txt +1 -0
- empirica_mcp-1.0.2/empirica_mcp.egg-info/entry_points.txt +2 -0
- empirica_mcp-1.0.2/empirica_mcp.egg-info/requires.txt +2 -0
- empirica_mcp-1.0.2/empirica_mcp.egg-info/top_level.txt +1 -0
- empirica_mcp-1.0.2/pyproject.toml +40 -0
- empirica_mcp-1.0.2/setup.cfg +4 -0
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: empirica-mcp
|
|
3
|
+
Version: 1.0.2
|
|
4
|
+
Summary: MCP server for Empirica epistemic framework
|
|
5
|
+
Author: Empirica Team
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/Nubaeon/empirica
|
|
8
|
+
Project-URL: Documentation, https://github.com/Nubaeon/empirica/tree/main/docs
|
|
9
|
+
Project-URL: Repository, https://github.com/Nubaeon/empirica
|
|
10
|
+
Project-URL: Issues, https://github.com/Nubaeon/empirica/issues
|
|
11
|
+
Keywords: mcp,empirica,epistemic,ai,metacognition
|
|
12
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
13
|
+
Classifier: Intended Audience :: Developers
|
|
14
|
+
Classifier: Programming Language :: Python :: 3
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
17
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
18
|
+
Requires-Python: >=3.11
|
|
19
|
+
Description-Content-Type: text/markdown
|
|
20
|
+
Requires-Dist: empirica>=1.0.0
|
|
21
|
+
Requires-Dist: mcp>=1.0.0
|
|
22
|
+
|
|
23
|
+
# Empirica MCP Server
|
|
24
|
+
|
|
25
|
+
**MCP (Model Context Protocol) server for Empirica epistemic framework**
|
|
26
|
+
|
|
27
|
+
## Installation
|
|
28
|
+
|
|
29
|
+
```bash
|
|
30
|
+
pip install empirica-mcp
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
## Usage
|
|
34
|
+
|
|
35
|
+
### As MCP Server
|
|
36
|
+
|
|
37
|
+
Add to your MCP client configuration:
|
|
38
|
+
|
|
39
|
+
```json
|
|
40
|
+
{
|
|
41
|
+
"mcpServers": {
|
|
42
|
+
"empirica": {
|
|
43
|
+
"command": "empirica-mcp"
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
### Standalone
|
|
50
|
+
|
|
51
|
+
```bash
|
|
52
|
+
empirica-mcp
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
## Available Tools
|
|
56
|
+
|
|
57
|
+
The MCP server exposes all Empirica CLI commands as MCP tools:
|
|
58
|
+
|
|
59
|
+
- `session_create` - Create new session
|
|
60
|
+
- `preflight_submit` - Submit PREFLIGHT assessment
|
|
61
|
+
- `check` - Execute CHECK gate
|
|
62
|
+
- `postflight_submit` - Submit POSTFLIGHT assessment
|
|
63
|
+
- `goals_create` - Create goals
|
|
64
|
+
- `finding_log` - Log findings
|
|
65
|
+
- And 60+ more...
|
|
66
|
+
|
|
67
|
+
## Requirements
|
|
68
|
+
|
|
69
|
+
- Python 3.11+
|
|
70
|
+
- empirica>=1.0.0-beta
|
|
71
|
+
- mcp>=1.0.0
|
|
72
|
+
|
|
73
|
+
## Docker
|
|
74
|
+
|
|
75
|
+
```bash
|
|
76
|
+
docker pull empirica/mcp:latest
|
|
77
|
+
docker run -p 3000:3000 empirica/mcp
|
|
78
|
+
```
|
|
79
|
+
|
|
80
|
+
## Documentation
|
|
81
|
+
|
|
82
|
+
See main [Empirica documentation](https://github.com/empirical-ai/empirica/tree/main/docs) for details.
|
|
83
|
+
|
|
84
|
+
## License
|
|
85
|
+
|
|
86
|
+
MIT License
|
|
87
|
+
|
|
88
|
+
See main [Empirica repository](https://github.com/empirical-ai/empirica) for details.
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
# Empirica MCP Server
|
|
2
|
+
|
|
3
|
+
**MCP (Model Context Protocol) server for Empirica epistemic framework**
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
pip install empirica-mcp
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Usage
|
|
12
|
+
|
|
13
|
+
### As MCP Server
|
|
14
|
+
|
|
15
|
+
Add to your MCP client configuration:
|
|
16
|
+
|
|
17
|
+
```json
|
|
18
|
+
{
|
|
19
|
+
"mcpServers": {
|
|
20
|
+
"empirica": {
|
|
21
|
+
"command": "empirica-mcp"
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
### Standalone
|
|
28
|
+
|
|
29
|
+
```bash
|
|
30
|
+
empirica-mcp
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
## Available Tools
|
|
34
|
+
|
|
35
|
+
The MCP server exposes all Empirica CLI commands as MCP tools:
|
|
36
|
+
|
|
37
|
+
- `session_create` - Create new session
|
|
38
|
+
- `preflight_submit` - Submit PREFLIGHT assessment
|
|
39
|
+
- `check` - Execute CHECK gate
|
|
40
|
+
- `postflight_submit` - Submit POSTFLIGHT assessment
|
|
41
|
+
- `goals_create` - Create goals
|
|
42
|
+
- `finding_log` - Log findings
|
|
43
|
+
- And 60+ more...
|
|
44
|
+
|
|
45
|
+
## Requirements
|
|
46
|
+
|
|
47
|
+
- Python 3.11+
|
|
48
|
+
- empirica>=1.0.0-beta
|
|
49
|
+
- mcp>=1.0.0
|
|
50
|
+
|
|
51
|
+
## Docker
|
|
52
|
+
|
|
53
|
+
```bash
|
|
54
|
+
docker pull empirica/mcp:latest
|
|
55
|
+
docker run -p 3000:3000 empirica/mcp
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
## Documentation
|
|
59
|
+
|
|
60
|
+
See main [Empirica documentation](https://github.com/empirical-ai/empirica/tree/main/docs) for details.
|
|
61
|
+
|
|
62
|
+
## License
|
|
63
|
+
|
|
64
|
+
MIT License
|
|
65
|
+
|
|
66
|
+
See main [Empirica repository](https://github.com/empirical-ai/empirica) for details.
|