ideosphere-mcp 0.1.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.
@@ -0,0 +1,6 @@
1
+ .venv/
2
+ dist/
3
+ *.egg-info/
4
+ __pycache__/
5
+ *.pyc
6
+ .DS_Store
@@ -0,0 +1,36 @@
1
+ Metadata-Version: 2.4
2
+ Name: ideosphere-mcp
3
+ Version: 0.1.0
4
+ Summary: MCP Server for evolutionary brainstorming with genetic programming
5
+ Author-email: Yohann <yohann@example.com>
6
+ License: MIT
7
+ Requires-Python: >=3.10
8
+ Requires-Dist: fastembed>=0.5.0
9
+ Requires-Dist: mcp[cli]>=1.6.0
10
+ Requires-Dist: numpy>=1.24.0
11
+ Description-Content-Type: text/markdown
12
+
13
+ # Ideosphere MCP Server
14
+
15
+ Evolutionary brainstorming via genetic programming — an MCP server that evolves tree-structured ideas using semantic similarity, multi-objective targets, and variable-length genomes.
16
+
17
+ ## Tools
18
+
19
+ | Tool | Purpose |
20
+ |---|---|
21
+ | `init_session` | Create a new brainstorming session |
22
+ | `seed_ideas` | Seed ideas (flat = texts, GP = random trees) |
23
+ | `show_ideas` | View all ideas with rankings |
24
+ | `rank_ideas` | Rank ideas by preference (best first) |
25
+ | `evolve` | Flat = LLM instructions, GP = free structural evolution |
26
+ | `add_ideas` | Register new flat ideas (LLM output) |
27
+ | `refresh_idea` | Replace leaf content while preserving tree structure |
28
+ | `import_idea` | Hand-craft a structured tree (leaves + operators) |
29
+ | `add_leaf_to_idea` | Append a leaf (variable-length) |
30
+ | `prune_leaf_from_idea` | Remove a leaf (preserves prefix) |
31
+ | `set_targets` | Update multi-objective fitness targets |
32
+ | `migrate_vocabulary` | Inject new leaf concepts |
33
+ | `get_stats` | Population statistics & diversity metrics |
34
+ | `get_pedigree` | Idea lineage tree |
35
+ | `export_session` / `restore_session` | Persistence |
36
+ | `list_sessions` | List active sessions |
@@ -0,0 +1,24 @@
1
+ # Ideosphere MCP Server
2
+
3
+ Evolutionary brainstorming via genetic programming — an MCP server that evolves tree-structured ideas using semantic similarity, multi-objective targets, and variable-length genomes.
4
+
5
+ ## Tools
6
+
7
+ | Tool | Purpose |
8
+ |---|---|
9
+ | `init_session` | Create a new brainstorming session |
10
+ | `seed_ideas` | Seed ideas (flat = texts, GP = random trees) |
11
+ | `show_ideas` | View all ideas with rankings |
12
+ | `rank_ideas` | Rank ideas by preference (best first) |
13
+ | `evolve` | Flat = LLM instructions, GP = free structural evolution |
14
+ | `add_ideas` | Register new flat ideas (LLM output) |
15
+ | `refresh_idea` | Replace leaf content while preserving tree structure |
16
+ | `import_idea` | Hand-craft a structured tree (leaves + operators) |
17
+ | `add_leaf_to_idea` | Append a leaf (variable-length) |
18
+ | `prune_leaf_from_idea` | Remove a leaf (preserves prefix) |
19
+ | `set_targets` | Update multi-objective fitness targets |
20
+ | `migrate_vocabulary` | Inject new leaf concepts |
21
+ | `get_stats` | Population statistics & diversity metrics |
22
+ | `get_pedigree` | Idea lineage tree |
23
+ | `export_session` / `restore_session` | Persistence |
24
+ | `list_sessions` | List active sessions |
@@ -0,0 +1,29 @@
1
+ [project]
2
+ name = "ideosphere-mcp"
3
+ version = "0.1.0"
4
+ description = "MCP Server for evolutionary brainstorming with genetic programming"
5
+ readme = "README.md"
6
+ requires-python = ">=3.10"
7
+ license = { text = "MIT" }
8
+ authors = [
9
+ { name = "Yohann", email = "yohann@example.com" },
10
+ ]
11
+
12
+ dependencies = [
13
+ "mcp[cli]>=1.6.0",
14
+ "fastembed>=0.5.0",
15
+ "numpy>=1.24.0",
16
+ ]
17
+
18
+ [project.scripts]
19
+ ideosphere = "ideosphere_mcp.__main__:main"
20
+
21
+ [build-system]
22
+ requires = ["hatchling"]
23
+ build-backend = "hatchling.build"
24
+
25
+ [tool.hatch.build.targets.wheel]
26
+ packages = ["src/ideosphere_mcp"]
27
+
28
+ [tool.hatch.build.targets.sdist]
29
+ include = ["/src"]
@@ -0,0 +1,14 @@
1
+ """Ideosphere MCP Server — Evolutionary brainstorming via genetic programming.
2
+
3
+ An MCP server that provides evolutionary brainstorming with:
4
+ - Tree-structured ideas (genetic programming with mixed-radix encoding)
5
+ - Variable-length genomes (add/remove leaves preserving old structure)
6
+ - Multi-objective targets (weighted-sum fitness across dimensions)
7
+ - Surrogate fitness from user rankings (centroid-based estimation)
8
+ - Free structural evolution (zero LLM cost for topology exploration)
9
+ - Automated diversity maintenance (fitness sharing + PID auto-tuning)
10
+ """
11
+
12
+ from __future__ import annotations
13
+
14
+ __version__ = "0.1.0"
@@ -0,0 +1,4 @@
1
+ """Entry point for the ``ideosphere`` MCP server."""
2
+ from .server import main
3
+
4
+ main()