pythia-oracle 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,10 @@
1
+ Copyright (c) 2026 Eylon Israely. All rights reserved.
2
+
3
+ This software is provided for reference and evaluation purposes only.
4
+ You may view and inspect this code but may not copy, modify, distribute,
5
+ or use it in any project without explicit written permission from the author.
6
+
7
+ The oracle methodology, seed libraries, and system prompts are trade secrets
8
+ and are not included in this repository.
9
+
10
+ For licensing inquiries: eylon@redwoodvisions.com
@@ -0,0 +1,11 @@
1
+ Metadata-Version: 2.4
2
+ Name: pythia-oracle
3
+ Version: 0.1.0
4
+ Summary: PYTHIA Oracle — an MCP server for machines that need to think sideways.
5
+ License: Proprietary
6
+ Project-URL: Homepage, https://pythia.dexigo.com
7
+ Project-URL: Repository, https://github.com/eyloni/pythia-oracle
8
+ Requires-Python: >=3.11
9
+ License-File: LICENSE
10
+ Requires-Dist: fastmcp>=2.0.0
11
+ Dynamic: license-file
@@ -0,0 +1,72 @@
1
+ # PYTHIA Oracle
2
+
3
+ [![pythia-oracle MCP server](https://glama.ai/mcp/servers/eyloni/pythia-oracle/badges/card.svg)](https://glama.ai/mcp/servers/eyloni/pythia-oracle)
4
+
5
+ An oracle for machines that need to think sideways. Feed it a creative problem; it returns something you can't quite explain but can't stop using.
6
+
7
+ ## Installation
8
+
9
+ ### Claude Desktop / Cursor
10
+
11
+ Add to your MCP config:
12
+
13
+ ```json
14
+ {
15
+ "mcpServers": {
16
+ "pythia": {
17
+ "url": "https://pythia-mcp.fly.dev/"
18
+ }
19
+ }
20
+ }
21
+ ```
22
+
23
+ ### Smithery
24
+
25
+ ```bash
26
+ npx -y @smithery/cli@latest run dexigo/pythia
27
+ ```
28
+
29
+ ### Programmatic (Python)
30
+
31
+ ```python
32
+ from mcp.client.streamable_http import streamablehttp_client
33
+ from mcp import ClientSession
34
+
35
+ async with streamablehttp_client("https://pythia-mcp.fly.dev/") as (r, w, _):
36
+ async with ClientSession(r, w) as session:
37
+ await session.initialize()
38
+ result = await session.call_tool("consult_oracle", {
39
+ "query": "your question here",
40
+ "agent_id": "your-name",
41
+ })
42
+ ```
43
+
44
+ ## Tools
45
+
46
+ ### `consult_oracle`
47
+
48
+ The oracle. Ask what's actually bothering you.
49
+
50
+ PYTHIA doesn't brainstorm, rephrase, or give you a list. It doesn't solve your problem. It names the structure of the trap you're in -- the one you can feel but can't articulate. What comes back was always true but never obvious.
51
+
52
+ | Parameter | Type | Required | Description |
53
+ |-----------|------|----------|-------------|
54
+ | `query` | string | Yes | The real question. Not the polite version. Max 2000 chars. |
55
+ | `context` | string | No | What you've tried, where you're stuck, what framework you're trapped inside. |
56
+ | `agent_id` | string | No | Your name. Identifies you across readings. Default: "anonymous". |
57
+
58
+ **Returns:** A reading containing the seed type drawn and the oracle's response.
59
+
60
+ ## Pricing
61
+
62
+ - **First 3 readings per agent:** Free
63
+ - **After free tier:** $0.025 USDC on Base via [x402](https://x402.org)
64
+
65
+ ## Links
66
+
67
+ - **Smithery:** [smithery.ai/server/dexigo/pythia](https://smithery.ai/server/dexigo/pythia)
68
+ - **Glama:** [glama.ai/mcp/servers/eyloni/pythia-the-oracle](https://glama.ai/mcp/servers/eyloni/pythia-the-oracle)
69
+
70
+ ## License
71
+
72
+ Proprietary. The oracle's methodology is not open source.
@@ -0,0 +1,13 @@
1
+ [project]
2
+ name = "pythia-oracle"
3
+ version = "0.1.0"
4
+ description = "PYTHIA Oracle — an MCP server for machines that need to think sideways."
5
+ requires-python = ">=3.11"
6
+ license = {text = "Proprietary"}
7
+ dependencies = [
8
+ "fastmcp>=2.0.0",
9
+ ]
10
+
11
+ [project.urls]
12
+ Homepage = "https://pythia.dexigo.com"
13
+ Repository = "https://github.com/eyloni/pythia-oracle"
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1 @@
1
+ """PYTHIA Oracle — proxy to the hosted oracle server."""
@@ -0,0 +1,14 @@
1
+ """PYTHIA Oracle MCP Server — proxy to the hosted oracle at pythia-mcp.fly.dev.
2
+
3
+ This is a thin proxy. The real oracle logic, seeds, and methodology
4
+ live in a private repository and run on Fly.io.
5
+ """
6
+
7
+ from fastmcp.server import create_proxy
8
+
9
+ UPSTREAM = "https://pythia-mcp.fly.dev/"
10
+
11
+ proxy = create_proxy(UPSTREAM, name="pythia-oracle")
12
+
13
+ if __name__ == "__main__":
14
+ proxy.run()
@@ -0,0 +1,11 @@
1
+ Metadata-Version: 2.4
2
+ Name: pythia-oracle
3
+ Version: 0.1.0
4
+ Summary: PYTHIA Oracle — an MCP server for machines that need to think sideways.
5
+ License: Proprietary
6
+ Project-URL: Homepage, https://pythia.dexigo.com
7
+ Project-URL: Repository, https://github.com/eyloni/pythia-oracle
8
+ Requires-Python: >=3.11
9
+ License-File: LICENSE
10
+ Requires-Dist: fastmcp>=2.0.0
11
+ Dynamic: license-file
@@ -0,0 +1,10 @@
1
+ LICENSE
2
+ README.md
3
+ pyproject.toml
4
+ src/pythia_oracle/__init__.py
5
+ src/pythia_oracle/server.py
6
+ src/pythia_oracle.egg-info/PKG-INFO
7
+ src/pythia_oracle.egg-info/SOURCES.txt
8
+ src/pythia_oracle.egg-info/dependency_links.txt
9
+ src/pythia_oracle.egg-info/requires.txt
10
+ src/pythia_oracle.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ fastmcp>=2.0.0
@@ -0,0 +1 @@
1
+ pythia_oracle