sabel-forge-mcp 0.1.1__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.
Files changed (79) hide show
  1. sabel_forge_mcp-0.1.1/.gitignore +29 -0
  2. sabel_forge_mcp-0.1.1/PKG-INFO +24 -0
  3. sabel_forge_mcp-0.1.1/documentation/api.intercom.io.unstable.yaml.json +1 -0
  4. sabel_forge_mcp-0.1.1/forge/__init__.py +0 -0
  5. sabel_forge_mcp-0.1.1/forge/cli.py +29 -0
  6. sabel_forge_mcp-0.1.1/forge/client/__init__.py +0 -0
  7. sabel_forge_mcp-0.1.1/forge/client/intercom.py +72 -0
  8. sabel_forge_mcp-0.1.1/forge/commands/__init__.py +0 -0
  9. sabel_forge_mcp-0.1.1/forge/commands/auth.py +118 -0
  10. sabel_forge_mcp-0.1.1/forge/commands/install.py +81 -0
  11. sabel_forge_mcp-0.1.1/forge/license.py +397 -0
  12. sabel_forge_mcp-0.1.1/forge/mcp/__init__.py +0 -0
  13. sabel_forge_mcp-0.1.1/forge/mcp/fin/__init__.py +0 -0
  14. sabel_forge_mcp-0.1.1/forge/mcp/fin/server.py +171 -0
  15. sabel_forge_mcp-0.1.1/forge/mcp/fin/tools/__init__.py +0 -0
  16. sabel_forge_mcp-0.1.1/forge/mcp/fin/tools/ai_content.py +208 -0
  17. sabel_forge_mcp-0.1.1/forge/mcp/fin/tools/calls.py +39 -0
  18. sabel_forge_mcp-0.1.1/forge/mcp/fin/tools/data_connectors.py +132 -0
  19. sabel_forge_mcp-0.1.1/forge/mcp/fin/tools/fin.py +80 -0
  20. sabel_forge_mcp-0.1.1/forge/mcp/fin/tools/fin_snapshot.py +117 -0
  21. sabel_forge_mcp-0.1.1/forge/mcp/fin/tools/fin_voice.py +93 -0
  22. sabel_forge_mcp-0.1.1/forge/mcp/fin/tools/procedures.py +132 -0
  23. sabel_forge_mcp-0.1.1/forge/mcp/fin/tools/ui_data_connectors.py +42 -0
  24. sabel_forge_mcp-0.1.1/forge/mcp/fin/tools/ui_fin_attributes.py +82 -0
  25. sabel_forge_mcp-0.1.1/forge/mcp/fin/tools/ui_workflows.py +40 -0
  26. sabel_forge_mcp-0.1.1/forge/mcp/fin/tools/workflows.py +22 -0
  27. sabel_forge_mcp-0.1.1/forge/mcp/shared.py +65 -0
  28. sabel_forge_mcp-0.1.1/forge/mcp/shared_ui.py +104 -0
  29. sabel_forge_mcp-0.1.1/forge/mcp/workspace/__init__.py +0 -0
  30. sabel_forge_mcp-0.1.1/forge/mcp/workspace/server.py +215 -0
  31. sabel_forge_mcp-0.1.1/forge/mcp/workspace/tools/__init__.py +0 -0
  32. sabel_forge_mcp-0.1.1/forge/mcp/workspace/tools/admins.py +55 -0
  33. sabel_forge_mcp-0.1.1/forge/mcp/workspace/tools/articles.py +117 -0
  34. sabel_forge_mcp-0.1.1/forge/mcp/workspace/tools/away_status_reasons.py +19 -0
  35. sabel_forge_mcp-0.1.1/forge/mcp/workspace/tools/brands.py +23 -0
  36. sabel_forge_mcp-0.1.1/forge/mcp/workspace/tools/data_attributes.py +88 -0
  37. sabel_forge_mcp-0.1.1/forge/mcp/workspace/tools/folders.py +80 -0
  38. sabel_forge_mcp-0.1.1/forge/mcp/workspace/tools/help_center.py +111 -0
  39. sabel_forge_mcp-0.1.1/forge/mcp/workspace/tools/internal_articles.py +97 -0
  40. sabel_forge_mcp-0.1.1/forge/mcp/workspace/tools/macros.py +24 -0
  41. sabel_forge_mcp-0.1.1/forge/mcp/workspace/tools/news.py +129 -0
  42. sabel_forge_mcp-0.1.1/forge/mcp/workspace/tools/segments.py +28 -0
  43. sabel_forge_mcp-0.1.1/forge/mcp/workspace/tools/snapshot.py +255 -0
  44. sabel_forge_mcp-0.1.1/forge/mcp/workspace/tools/subscription_types.py +18 -0
  45. sabel_forge_mcp-0.1.1/forge/mcp/workspace/tools/tags.py +49 -0
  46. sabel_forge_mcp-0.1.1/forge/mcp/workspace/tools/teams.py +36 -0
  47. sabel_forge_mcp-0.1.1/forge/mcp/workspace/tools/ticket_types.py +189 -0
  48. sabel_forge_mcp-0.1.1/forge/mcp/workspace/tools/ui_create.py +258 -0
  49. sabel_forge_mcp-0.1.1/forge/mcp/workspaces_tool.py +25 -0
  50. sabel_forge_mcp-0.1.1/forge/migration/__init__.py +0 -0
  51. sabel_forge_mcp-0.1.1/forge/migration/dependency_graph.py +457 -0
  52. sabel_forge_mcp-0.1.1/forge/paths.py +89 -0
  53. sabel_forge_mcp-0.1.1/forge/ui_automation/__init__.py +0 -0
  54. sabel_forge_mcp-0.1.1/forge/ui_automation/away_status_reasons.py +445 -0
  55. sabel_forge_mcp-0.1.1/forge/ui_automation/away_status_reasons_payloads/example.yaml +5 -0
  56. sabel_forge_mcp-0.1.1/forge/ui_automation/brands.py +485 -0
  57. sabel_forge_mcp-0.1.1/forge/ui_automation/brands_payloads/example.yaml +4 -0
  58. sabel_forge_mcp-0.1.1/forge/ui_automation/conversation_attributes.py +553 -0
  59. sabel_forge_mcp-0.1.1/forge/ui_automation/data_connectors.py +774 -0
  60. sabel_forge_mcp-0.1.1/forge/ui_automation/data_connectors_payloads/example.yaml +3 -0
  61. sabel_forge_mcp-0.1.1/forge/ui_automation/fin_attributes.py +569 -0
  62. sabel_forge_mcp-0.1.1/forge/ui_automation/macros.py +437 -0
  63. sabel_forge_mcp-0.1.1/forge/ui_automation/macros_payloads/example.yaml +7 -0
  64. sabel_forge_mcp-0.1.1/forge/ui_automation/newsfeeds.py +311 -0
  65. sabel_forge_mcp-0.1.1/forge/ui_automation/newsfeeds_payloads/example.yaml +5 -0
  66. sabel_forge_mcp-0.1.1/forge/ui_automation/segments.py +27 -0
  67. sabel_forge_mcp-0.1.1/forge/ui_automation/session.py +189 -0
  68. sabel_forge_mcp-0.1.1/forge/ui_automation/subscription_types.py +423 -0
  69. sabel_forge_mcp-0.1.1/forge/ui_automation/subscription_types_payloads/example.yaml +10 -0
  70. sabel_forge_mcp-0.1.1/forge/ui_automation/teams.py +475 -0
  71. sabel_forge_mcp-0.1.1/forge/ui_automation/teams_payloads/example.yaml +8 -0
  72. sabel_forge_mcp-0.1.1/forge/ui_automation/ticket_states.py +452 -0
  73. sabel_forge_mcp-0.1.1/forge/ui_automation/ticket_states_payloads/example.yaml +10 -0
  74. sabel_forge_mcp-0.1.1/forge/ui_automation/workflow_payloads/example.yaml +12 -0
  75. sabel_forge_mcp-0.1.1/forge/ui_automation/workflows.py +849 -0
  76. sabel_forge_mcp-0.1.1/forge/workspace_config.py +212 -0
  77. sabel_forge_mcp-0.1.1/playbooks/ecommerce.md +260 -0
  78. sabel_forge_mcp-0.1.1/playbooks/gambling.md +486 -0
  79. sabel_forge_mcp-0.1.1/pyproject.toml +61 -0
@@ -0,0 +1,29 @@
1
+ # Python
2
+ __pycache__/
3
+ *.py[cod]
4
+ *.egg-info/
5
+ build/
6
+ dist/
7
+
8
+ # Virtualenv
9
+ .venv/
10
+ venv/
11
+ env/
12
+
13
+ # Environment / secrets
14
+ .env
15
+ .env.*
16
+
17
+ # Claude Code per-user settings (may contain tokens or local allow-lists)
18
+ .claude/settings.local.json
19
+ **/.claude/settings.local.json
20
+
21
+ # Editor / OS
22
+ .vscode/
23
+ .idea/
24
+ *.swp
25
+ .DS_Store
26
+ Thumbs.db
27
+
28
+ # Playwright UI-automation state now lives under ~/.forge/ (outside the
29
+ # repo) — see forge/paths.py. Nothing to ignore here.
@@ -0,0 +1,24 @@
1
+ Metadata-Version: 2.4
2
+ Name: sabel-forge-mcp
3
+ Version: 0.1.1
4
+ Summary: MCP server suite for Intercom workspace and Fin AI configuration, audit, and migration.
5
+ Author: Forge
6
+ License: Proprietary
7
+ Keywords: automation,claude,fin,intercom,mcp
8
+ Classifier: Development Status :: 4 - Beta
9
+ Classifier: Intended Audience :: Developers
10
+ Classifier: License :: Other/Proprietary License
11
+ Classifier: Operating System :: OS Independent
12
+ Classifier: Programming Language :: Python :: 3
13
+ Classifier: Programming Language :: Python :: 3.11
14
+ Classifier: Programming Language :: Python :: 3.12
15
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
16
+ Requires-Python: >=3.11
17
+ Requires-Dist: click>=8.1
18
+ Requires-Dist: cryptography>=42
19
+ Requires-Dist: httpx>=0.27
20
+ Requires-Dist: mcp>=1.0
21
+ Requires-Dist: rich>=13.0
22
+ Provides-Extra: ui-automation
23
+ Requires-Dist: playwright>=1.45; extra == 'ui-automation'
24
+ Requires-Dist: pyyaml>=6.0; extra == 'ui-automation'