questions-mcp-server 1.1.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.
- questions_mcp_server-1.1.2/.claude/settings.local.json +22 -0
- questions_mcp_server-1.1.2/.gitignore +72 -0
- questions_mcp_server-1.1.2/.qoder/quests/mcps-server-design.md +1553 -0
- questions_mcp_server-1.1.2/.qoder/rules/questions_mcp_server.md +353 -0
- questions_mcp_server-1.1.2/AGENTS.md +49 -0
- questions_mcp_server-1.1.2/CLAUDE.md +366 -0
- questions_mcp_server-1.1.2/DEVELOPMENT_STATUS.md +702 -0
- questions_mcp_server-1.1.2/PKG-INFO +32 -0
- questions_mcp_server-1.1.2/UV_USAGE.txt +128 -0
- questions_mcp_server-1.1.2/config/config.yaml +205 -0
- questions_mcp_server-1.1.2/fix_mcp_config.md +104 -0
- questions_mcp_server-1.1.2/mcp_server_config.json +24 -0
- questions_mcp_server-1.1.2/mcp_server_config_installed.json +22 -0
- questions_mcp_server-1.1.2/mcp_server_config_pip.json +23 -0
- questions_mcp_server-1.1.2/publish.bat +136 -0
- questions_mcp_server-1.1.2/pyproject.toml +82 -0
- questions_mcp_server-1.1.2/questions_mcp_server/__init__.py +10 -0
- questions_mcp_server-1.1.2/questions_mcp_server/__main__.py +18 -0
- questions_mcp_server-1.1.2/requirements.txt +29 -0
- questions_mcp_server-1.1.2/reset_circuit_breaker.py +63 -0
- questions_mcp_server-1.1.2/run_all_tests.py +106 -0
- questions_mcp_server-1.1.2/setup.py +14 -0
- questions_mcp_server-1.1.2/src/__init__.py +35 -0
- questions_mcp_server-1.1.2/src/core/__init__.py +42 -0
- questions_mcp_server-1.1.2/src/core/config.py +448 -0
- questions_mcp_server-1.1.2/src/core/logger.py +371 -0
- questions_mcp_server-1.1.2/src/database/__init__.py +36 -0
- questions_mcp_server-1.1.2/src/database/chroma_dao.py +623 -0
- questions_mcp_server-1.1.2/src/database/database_manager.py +594 -0
- questions_mcp_server-1.1.2/src/database/models.py +323 -0
- questions_mcp_server-1.1.2/src/database/schema.sql +402 -0
- questions_mcp_server-1.1.2/src/database/sqlite_dao.py +826 -0
- questions_mcp_server-1.1.2/src/main.py +1536 -0
- questions_mcp_server-1.1.2/src/services/__init__.py +31 -0
- questions_mcp_server-1.1.2/src/services/analytics_service.py +908 -0
- questions_mcp_server-1.1.2/src/services/embedding_service.py +544 -0
- questions_mcp_server-1.1.2/src/services/export_service.py +565 -0
- questions_mcp_server-1.1.2/src/services/import_service.py +1206 -0
- questions_mcp_server-1.1.2/src/services/management_service.py +752 -0
- questions_mcp_server-1.1.2/src/services/search_service.py +601 -0
- questions_mcp_server-1.1.2/src/utils/__init__.py +65 -0
- questions_mcp_server-1.1.2/src/utils/cache.py +402 -0
- questions_mcp_server-1.1.2/src/utils/helpers.py +488 -0
- questions_mcp_server-1.1.2/test_config.py +18 -0
- questions_mcp_server-1.1.2/test_mcp_connection.py +143 -0
- questions_mcp_server-1.1.2/tests/__init__.py +3 -0
- questions_mcp_server-1.1.2/tests/test_analytics_service.py +529 -0
- questions_mcp_server-1.1.2/tests/test_database.py +339 -0
- questions_mcp_server-1.1.2/tests/test_embedding_service.py +361 -0
- questions_mcp_server-1.1.2/tests/test_export_service.py +492 -0
- questions_mcp_server-1.1.2/tests/test_import_service.py +630 -0
- questions_mcp_server-1.1.2/tests/test_management_service.py +447 -0
- questions_mcp_server-1.1.2/tests/test_search_service.py +381 -0
- questions_mcp_server-1.1.2/uv.lock +3117 -0
- questions_mcp_server-1.1.2/verify_stage3.py +303 -0
- questions_mcp_server-1.1.2/verify_stage5.py +214 -0
- questions_mcp_server-1.1.2/verify_stage6.py +460 -0
- questions_mcp_server-1.1.2/verify_stage7.py +327 -0
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
{
|
|
2
|
+
"permissions": {
|
|
3
|
+
"allow": [
|
|
4
|
+
"Bash(uv python -m pytest:*)",
|
|
5
|
+
"Bash(python -m pytest:*)",
|
|
6
|
+
"Bash(uv run pytest:*)",
|
|
7
|
+
"Bash(uv run python:*)",
|
|
8
|
+
"Bash(cat:*)",
|
|
9
|
+
"Bash(python:*)",
|
|
10
|
+
"Bash(run_with_utf8.bat:*)",
|
|
11
|
+
"Bash(uv:*)",
|
|
12
|
+
"Bash(chmod:*)",
|
|
13
|
+
"Bash(dos2unix:*)",
|
|
14
|
+
"Bash(timeout 5 uv python:*)",
|
|
15
|
+
"Bash(timeout 5 uv run:*)",
|
|
16
|
+
"Bash(EMBEDDING_API_KEY=sk-test123 uv run:*)",
|
|
17
|
+
"Bash(./publish.bat:*)"
|
|
18
|
+
],
|
|
19
|
+
"deny": [],
|
|
20
|
+
"ask": []
|
|
21
|
+
}
|
|
22
|
+
}
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
# Python
|
|
2
|
+
__pycache__/
|
|
3
|
+
*.py[cod]
|
|
4
|
+
*$py.class
|
|
5
|
+
*.so
|
|
6
|
+
.Python
|
|
7
|
+
build/
|
|
8
|
+
develop-eggs/
|
|
9
|
+
dist/
|
|
10
|
+
downloads/
|
|
11
|
+
eggs/
|
|
12
|
+
.eggs/
|
|
13
|
+
lib/
|
|
14
|
+
lib64/
|
|
15
|
+
parts/
|
|
16
|
+
sdist/
|
|
17
|
+
var/
|
|
18
|
+
wheels/
|
|
19
|
+
pip-wheel-metadata/
|
|
20
|
+
share/python-wheels/
|
|
21
|
+
*.egg-info/
|
|
22
|
+
.installed.cfg
|
|
23
|
+
*.egg
|
|
24
|
+
PIPFILE.lock
|
|
25
|
+
|
|
26
|
+
# Virtual Environment
|
|
27
|
+
.venv/
|
|
28
|
+
venv/
|
|
29
|
+
ENV/
|
|
30
|
+
env/
|
|
31
|
+
|
|
32
|
+
# IDE
|
|
33
|
+
.vscode/
|
|
34
|
+
.idea/
|
|
35
|
+
*.swp
|
|
36
|
+
*.swo
|
|
37
|
+
*~
|
|
38
|
+
.DS_Store
|
|
39
|
+
|
|
40
|
+
# Application Data
|
|
41
|
+
data/
|
|
42
|
+
logs/
|
|
43
|
+
*.log
|
|
44
|
+
*.db
|
|
45
|
+
*.db-journal
|
|
46
|
+
|
|
47
|
+
# Environment Variables
|
|
48
|
+
.env
|
|
49
|
+
.env.local
|
|
50
|
+
.env.*.local
|
|
51
|
+
|
|
52
|
+
# Testing
|
|
53
|
+
.pytest_cache/
|
|
54
|
+
.coverage
|
|
55
|
+
htmlcov/
|
|
56
|
+
.tox/
|
|
57
|
+
.nox/
|
|
58
|
+
|
|
59
|
+
# Distribution
|
|
60
|
+
dist/
|
|
61
|
+
build/
|
|
62
|
+
*.tar.gz
|
|
63
|
+
*.whl
|
|
64
|
+
|
|
65
|
+
# Backup files
|
|
66
|
+
*.bak
|
|
67
|
+
*.backup
|
|
68
|
+
*~
|
|
69
|
+
|
|
70
|
+
# OS
|
|
71
|
+
.DS_Store
|
|
72
|
+
Thumbs.db
|