frootai-mcp 3.2.0__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.
- frootai_mcp-3.2.0/PKG-INFO +71 -0
- frootai_mcp-3.2.0/README.md +48 -0
- frootai_mcp-3.2.0/frootai_mcp/__init__.py +21 -0
- frootai_mcp-3.2.0/frootai_mcp/knowledge.json +1 -0
- frootai_mcp-3.2.0/frootai_mcp/server.py +260 -0
- frootai_mcp-3.2.0/frootai_mcp.egg-info/PKG-INFO +71 -0
- frootai_mcp-3.2.0/frootai_mcp.egg-info/SOURCES.txt +10 -0
- frootai_mcp-3.2.0/frootai_mcp.egg-info/dependency_links.txt +1 -0
- frootai_mcp-3.2.0/frootai_mcp.egg-info/entry_points.txt +2 -0
- frootai_mcp-3.2.0/frootai_mcp.egg-info/top_level.txt +1 -0
- frootai_mcp-3.2.0/pyproject.toml +41 -0
- frootai_mcp-3.2.0/setup.cfg +4 -0
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: frootai-mcp
|
|
3
|
+
Version: 3.2.0
|
|
4
|
+
Summary: FrootAI MCP Server — AI architecture knowledge + compute tools. 22 tools, 18 modules, 200+ terms, 20 solution plays. Python implementation.
|
|
5
|
+
Author-email: Pavleen Bali <pavleenbali@frootai.dev>
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://frootai.dev
|
|
8
|
+
Project-URL: Repository, https://github.com/gitpavleenbali/frootai
|
|
9
|
+
Project-URL: Documentation, https://frootai.dev/setup-guide
|
|
10
|
+
Project-URL: Bug Tracker, https://github.com/gitpavleenbali/frootai/issues
|
|
11
|
+
Keywords: mcp,ai,architecture,azure,copilot,claude,frootai,agents
|
|
12
|
+
Classifier: Development Status :: 4 - Beta
|
|
13
|
+
Classifier: Intended Audience :: Developers
|
|
14
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
15
|
+
Classifier: Programming Language :: Python :: 3
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
19
|
+
Classifier: Topic :: Software Development :: Libraries
|
|
20
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
21
|
+
Requires-Python: >=3.10
|
|
22
|
+
Description-Content-Type: text/markdown
|
|
23
|
+
|
|
24
|
+
# FrootAI MCP Server — Python
|
|
25
|
+
|
|
26
|
+
> 🐍 Python implementation of the FrootAI MCP Server. Same 22 tools, 18 modules, 200+ terms.
|
|
27
|
+
|
|
28
|
+
## Install
|
|
29
|
+
|
|
30
|
+
```bash
|
|
31
|
+
pip install frootai-mcp
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
## Usage
|
|
35
|
+
|
|
36
|
+
### As MCP Server (stdio)
|
|
37
|
+
```bash
|
|
38
|
+
frootai-mcp-py
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
### In Python
|
|
42
|
+
```python
|
|
43
|
+
from frootai_mcp import FrootAIMCP
|
|
44
|
+
|
|
45
|
+
server = FrootAIMCP()
|
|
46
|
+
# Use tools programmatically
|
|
47
|
+
result = server._search_knowledge({"query": "RAG architecture"})
|
|
48
|
+
print(result)
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
### With Claude Desktop
|
|
52
|
+
```json
|
|
53
|
+
{
|
|
54
|
+
"mcpServers": {
|
|
55
|
+
"frootai": {
|
|
56
|
+
"command": "frootai-mcp-py"
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
## Links
|
|
63
|
+
|
|
64
|
+
- Website: [frootai.dev](https://frootai.dev)
|
|
65
|
+
- npm (Node.js): `npx frootai-mcp`
|
|
66
|
+
- Docker: `docker run -i ghcr.io/gitpavleenbali/frootai-mcp`
|
|
67
|
+
- VS Code: Search "FrootAI" in Extensions
|
|
68
|
+
|
|
69
|
+
---
|
|
70
|
+
|
|
71
|
+
*From the Roots to the Fruits. It's simply Frootful.* 🌳
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
# FrootAI MCP Server — Python
|
|
2
|
+
|
|
3
|
+
> 🐍 Python implementation of the FrootAI MCP Server. Same 22 tools, 18 modules, 200+ terms.
|
|
4
|
+
|
|
5
|
+
## Install
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
pip install frootai-mcp
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Usage
|
|
12
|
+
|
|
13
|
+
### As MCP Server (stdio)
|
|
14
|
+
```bash
|
|
15
|
+
frootai-mcp-py
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
### In Python
|
|
19
|
+
```python
|
|
20
|
+
from frootai_mcp import FrootAIMCP
|
|
21
|
+
|
|
22
|
+
server = FrootAIMCP()
|
|
23
|
+
# Use tools programmatically
|
|
24
|
+
result = server._search_knowledge({"query": "RAG architecture"})
|
|
25
|
+
print(result)
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
### With Claude Desktop
|
|
29
|
+
```json
|
|
30
|
+
{
|
|
31
|
+
"mcpServers": {
|
|
32
|
+
"frootai": {
|
|
33
|
+
"command": "frootai-mcp-py"
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
## Links
|
|
40
|
+
|
|
41
|
+
- Website: [frootai.dev](https://frootai.dev)
|
|
42
|
+
- npm (Node.js): `npx frootai-mcp`
|
|
43
|
+
- Docker: `docker run -i ghcr.io/gitpavleenbali/frootai-mcp`
|
|
44
|
+
- VS Code: Search "FrootAI" in Extensions
|
|
45
|
+
|
|
46
|
+
---
|
|
47
|
+
|
|
48
|
+
*From the Roots to the Fruits. It's simply Frootful.* 🌳
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"""FrootAI MCP Server — Python Implementation.
|
|
2
|
+
|
|
3
|
+
AI architecture knowledge + compute tools.
|
|
4
|
+
22 tools, 18 modules, 200+ terms, 20 solution plays.
|
|
5
|
+
|
|
6
|
+
Usage:
|
|
7
|
+
pip install frootai-mcp
|
|
8
|
+
frootai-mcp-py
|
|
9
|
+
|
|
10
|
+
Or in Python:
|
|
11
|
+
from frootai_mcp import FrootAIMCP
|
|
12
|
+
server = FrootAIMCP()
|
|
13
|
+
server.run()
|
|
14
|
+
"""
|
|
15
|
+
|
|
16
|
+
__version__ = "3.2.0"
|
|
17
|
+
__author__ = "Pavleen Bali"
|
|
18
|
+
|
|
19
|
+
from frootai_mcp.server import FrootAIMCP, main
|
|
20
|
+
|
|
21
|
+
__all__ = ["FrootAIMCP", "main", "__version__"]
|