schema-search 0.1.2__tar.gz → 0.1.4__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.

Potentially problematic release.


This version of schema-search might be problematic. Click here for more details.

Files changed (46) hide show
  1. {schema_search-0.1.2/schema_search.egg-info → schema_search-0.1.4}/PKG-INFO +3 -3
  2. {schema_search-0.1.2 → schema_search-0.1.4}/README.md +2 -2
  3. {schema_search-0.1.2 → schema_search-0.1.4}/schema_search/mcp_server.py +1 -1
  4. {schema_search-0.1.2 → schema_search-0.1.4/schema_search.egg-info}/PKG-INFO +3 -3
  5. schema_search-0.1.4/schema_search.egg-info/entry_points.txt +2 -0
  6. {schema_search-0.1.2 → schema_search-0.1.4}/setup.py +2 -2
  7. schema_search-0.1.2/schema_search.egg-info/entry_points.txt +0 -2
  8. {schema_search-0.1.2 → schema_search-0.1.4}/LICENSE +0 -0
  9. {schema_search-0.1.2 → schema_search-0.1.4}/MANIFEST.in +0 -0
  10. {schema_search-0.1.2 → schema_search-0.1.4}/config.yml +0 -0
  11. {schema_search-0.1.2 → schema_search-0.1.4}/schema_search/__init__.py +0 -0
  12. {schema_search-0.1.2 → schema_search-0.1.4}/schema_search/chunkers/__init__.py +0 -0
  13. {schema_search-0.1.2 → schema_search-0.1.4}/schema_search/chunkers/base.py +0 -0
  14. {schema_search-0.1.2 → schema_search-0.1.4}/schema_search/chunkers/factory.py +0 -0
  15. {schema_search-0.1.2 → schema_search-0.1.4}/schema_search/chunkers/llm.py +0 -0
  16. {schema_search-0.1.2 → schema_search-0.1.4}/schema_search/chunkers/markdown.py +0 -0
  17. {schema_search-0.1.2 → schema_search-0.1.4}/schema_search/embedding_cache/__init__.py +0 -0
  18. {schema_search-0.1.2 → schema_search-0.1.4}/schema_search/embedding_cache/base.py +0 -0
  19. {schema_search-0.1.2 → schema_search-0.1.4}/schema_search/embedding_cache/bm25.py +0 -0
  20. {schema_search-0.1.2 → schema_search-0.1.4}/schema_search/embedding_cache/factory.py +0 -0
  21. {schema_search-0.1.2 → schema_search-0.1.4}/schema_search/embedding_cache/inmemory.py +0 -0
  22. {schema_search-0.1.2 → schema_search-0.1.4}/schema_search/graph_builder.py +0 -0
  23. {schema_search-0.1.2 → schema_search-0.1.4}/schema_search/metrics.py +0 -0
  24. {schema_search-0.1.2 → schema_search-0.1.4}/schema_search/rankers/__init__.py +0 -0
  25. {schema_search-0.1.2 → schema_search-0.1.4}/schema_search/rankers/base.py +0 -0
  26. {schema_search-0.1.2 → schema_search-0.1.4}/schema_search/rankers/cross_encoder.py +0 -0
  27. {schema_search-0.1.2 → schema_search-0.1.4}/schema_search/rankers/factory.py +0 -0
  28. {schema_search-0.1.2 → schema_search-0.1.4}/schema_search/schema_extractor.py +0 -0
  29. {schema_search-0.1.2 → schema_search-0.1.4}/schema_search/schema_search.py +0 -0
  30. {schema_search-0.1.2 → schema_search-0.1.4}/schema_search/search/__init__.py +0 -0
  31. {schema_search-0.1.2 → schema_search-0.1.4}/schema_search/search/base.py +0 -0
  32. {schema_search-0.1.2 → schema_search-0.1.4}/schema_search/search/bm25.py +0 -0
  33. {schema_search-0.1.2 → schema_search-0.1.4}/schema_search/search/factory.py +0 -0
  34. {schema_search-0.1.2 → schema_search-0.1.4}/schema_search/search/fuzzy.py +0 -0
  35. {schema_search-0.1.2 → schema_search-0.1.4}/schema_search/search/hybrid.py +0 -0
  36. {schema_search-0.1.2 → schema_search-0.1.4}/schema_search/search/semantic.py +0 -0
  37. {schema_search-0.1.2 → schema_search-0.1.4}/schema_search/types.py +0 -0
  38. {schema_search-0.1.2 → schema_search-0.1.4}/schema_search.egg-info/SOURCES.txt +0 -0
  39. {schema_search-0.1.2 → schema_search-0.1.4}/schema_search.egg-info/dependency_links.txt +0 -0
  40. {schema_search-0.1.2 → schema_search-0.1.4}/schema_search.egg-info/requires.txt +0 -0
  41. {schema_search-0.1.2 → schema_search-0.1.4}/schema_search.egg-info/top_level.txt +0 -0
  42. {schema_search-0.1.2 → schema_search-0.1.4}/setup.cfg +0 -0
  43. {schema_search-0.1.2 → schema_search-0.1.4}/tests/__init__.py +0 -0
  44. {schema_search-0.1.2 → schema_search-0.1.4}/tests/test_integration.py +0 -0
  45. {schema_search-0.1.2 → schema_search-0.1.4}/tests/test_llm_sql_generation.py +0 -0
  46. {schema_search-0.1.2 → schema_search-0.1.4}/tests/test_spider_eval.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: schema-search
3
- Version: 0.1.2
3
+ Version: 0.1.4
4
4
  Summary: Natural language search for database schemas with graph-aware semantic retrieval
5
5
  Home-page: https://github.com/neehan/schema-search
6
6
  Author:
@@ -109,7 +109,7 @@ Add to your MCP config (e.g., `~/.cursor/mcp.json` or Claude Desktop config):
109
109
  {
110
110
  "mcpServers": {
111
111
  "schema-search": {
112
- "command": "path/to/schema-search-mcp", // conda: /Users/<username>/opt/miniconda3/envs/<your env>/bin/schema-search-mcp",
112
+ "command": "path/to/schema-search", // conda: /Users/<username>/opt/miniconda3/envs/<your env>/bin/schema-search",
113
113
  "args": ["postgresql://user:pass@localhost/db", "optional config.yml path", "optional llm_api_key", "optional llm_base_url"]
114
114
  }
115
115
  }
@@ -122,7 +122,7 @@ The LLM API key and base url are only required if you use LLM-generated schema s
122
122
  ### CLI Usage
123
123
 
124
124
  ```bash
125
- schema-search-mcp "postgresql://user:pass@localhost/db"
125
+ schema-search "postgresql://user:pass@localhost/db"
126
126
  ```
127
127
 
128
128
  Optional args: `[config_path] [llm_api_key] [llm_base_url]`
@@ -57,7 +57,7 @@ Add to your MCP config (e.g., `~/.cursor/mcp.json` or Claude Desktop config):
57
57
  {
58
58
  "mcpServers": {
59
59
  "schema-search": {
60
- "command": "path/to/schema-search-mcp", // conda: /Users/<username>/opt/miniconda3/envs/<your env>/bin/schema-search-mcp",
60
+ "command": "path/to/schema-search", // conda: /Users/<username>/opt/miniconda3/envs/<your env>/bin/schema-search",
61
61
  "args": ["postgresql://user:pass@localhost/db", "optional config.yml path", "optional llm_api_key", "optional llm_base_url"]
62
62
  }
63
63
  }
@@ -70,7 +70,7 @@ The LLM API key and base url are only required if you use LLM-generated schema s
70
70
  ### CLI Usage
71
71
 
72
72
  ```bash
73
- schema-search-mcp "postgresql://user:pass@localhost/db"
73
+ schema-search "postgresql://user:pass@localhost/db"
74
74
  ```
75
75
 
76
76
  Optional args: `[config_path] [llm_api_key] [llm_base_url]`
@@ -66,7 +66,7 @@ def main():
66
66
 
67
67
  if len(sys.argv) < 2:
68
68
  print(
69
- "Usage: schema-search-mcp <database_url> [config_path] [llm_api_key] [llm_base_url]"
69
+ "Usage: schema-search <database_url> [config_path] [llm_api_key] [llm_base_url]"
70
70
  )
71
71
  sys.exit(1)
72
72
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: schema-search
3
- Version: 0.1.2
3
+ Version: 0.1.4
4
4
  Summary: Natural language search for database schemas with graph-aware semantic retrieval
5
5
  Home-page: https://github.com/neehan/schema-search
6
6
  Author:
@@ -109,7 +109,7 @@ Add to your MCP config (e.g., `~/.cursor/mcp.json` or Claude Desktop config):
109
109
  {
110
110
  "mcpServers": {
111
111
  "schema-search": {
112
- "command": "path/to/schema-search-mcp", // conda: /Users/<username>/opt/miniconda3/envs/<your env>/bin/schema-search-mcp",
112
+ "command": "path/to/schema-search", // conda: /Users/<username>/opt/miniconda3/envs/<your env>/bin/schema-search",
113
113
  "args": ["postgresql://user:pass@localhost/db", "optional config.yml path", "optional llm_api_key", "optional llm_base_url"]
114
114
  }
115
115
  }
@@ -122,7 +122,7 @@ The LLM API key and base url are only required if you use LLM-generated schema s
122
122
  ### CLI Usage
123
123
 
124
124
  ```bash
125
- schema-search-mcp "postgresql://user:pass@localhost/db"
125
+ schema-search "postgresql://user:pass@localhost/db"
126
126
  ```
127
127
 
128
128
  Optional args: `[config_path] [llm_api_key] [llm_base_url]`
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ schema-search = schema_search.mcp_server:main
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name="schema-search",
5
- version="0.1.2",
5
+ version="0.1.4",
6
6
  description="Natural language search for database schemas with graph-aware semantic retrieval",
7
7
  author="",
8
8
  long_description=open("README.md").read(),
@@ -46,7 +46,7 @@ setup(
46
46
  },
47
47
  entry_points={
48
48
  "console_scripts": [
49
- "schema-search-mcp=schema_search.mcp_server:main",
49
+ "schema-search=schema_search.mcp_server:main",
50
50
  ],
51
51
  },
52
52
  python_requires=">=3.8",
@@ -1,2 +0,0 @@
1
- [console_scripts]
2
- schema-search-mcp = schema_search.mcp_server:main
File without changes
File without changes
File without changes
File without changes