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.
- sabel_forge_mcp-0.1.1/.gitignore +29 -0
- sabel_forge_mcp-0.1.1/PKG-INFO +24 -0
- sabel_forge_mcp-0.1.1/documentation/api.intercom.io.unstable.yaml.json +1 -0
- sabel_forge_mcp-0.1.1/forge/__init__.py +0 -0
- sabel_forge_mcp-0.1.1/forge/cli.py +29 -0
- sabel_forge_mcp-0.1.1/forge/client/__init__.py +0 -0
- sabel_forge_mcp-0.1.1/forge/client/intercom.py +72 -0
- sabel_forge_mcp-0.1.1/forge/commands/__init__.py +0 -0
- sabel_forge_mcp-0.1.1/forge/commands/auth.py +118 -0
- sabel_forge_mcp-0.1.1/forge/commands/install.py +81 -0
- sabel_forge_mcp-0.1.1/forge/license.py +397 -0
- sabel_forge_mcp-0.1.1/forge/mcp/__init__.py +0 -0
- sabel_forge_mcp-0.1.1/forge/mcp/fin/__init__.py +0 -0
- sabel_forge_mcp-0.1.1/forge/mcp/fin/server.py +171 -0
- sabel_forge_mcp-0.1.1/forge/mcp/fin/tools/__init__.py +0 -0
- sabel_forge_mcp-0.1.1/forge/mcp/fin/tools/ai_content.py +208 -0
- sabel_forge_mcp-0.1.1/forge/mcp/fin/tools/calls.py +39 -0
- sabel_forge_mcp-0.1.1/forge/mcp/fin/tools/data_connectors.py +132 -0
- sabel_forge_mcp-0.1.1/forge/mcp/fin/tools/fin.py +80 -0
- sabel_forge_mcp-0.1.1/forge/mcp/fin/tools/fin_snapshot.py +117 -0
- sabel_forge_mcp-0.1.1/forge/mcp/fin/tools/fin_voice.py +93 -0
- sabel_forge_mcp-0.1.1/forge/mcp/fin/tools/procedures.py +132 -0
- sabel_forge_mcp-0.1.1/forge/mcp/fin/tools/ui_data_connectors.py +42 -0
- sabel_forge_mcp-0.1.1/forge/mcp/fin/tools/ui_fin_attributes.py +82 -0
- sabel_forge_mcp-0.1.1/forge/mcp/fin/tools/ui_workflows.py +40 -0
- sabel_forge_mcp-0.1.1/forge/mcp/fin/tools/workflows.py +22 -0
- sabel_forge_mcp-0.1.1/forge/mcp/shared.py +65 -0
- sabel_forge_mcp-0.1.1/forge/mcp/shared_ui.py +104 -0
- sabel_forge_mcp-0.1.1/forge/mcp/workspace/__init__.py +0 -0
- sabel_forge_mcp-0.1.1/forge/mcp/workspace/server.py +215 -0
- sabel_forge_mcp-0.1.1/forge/mcp/workspace/tools/__init__.py +0 -0
- sabel_forge_mcp-0.1.1/forge/mcp/workspace/tools/admins.py +55 -0
- sabel_forge_mcp-0.1.1/forge/mcp/workspace/tools/articles.py +117 -0
- sabel_forge_mcp-0.1.1/forge/mcp/workspace/tools/away_status_reasons.py +19 -0
- sabel_forge_mcp-0.1.1/forge/mcp/workspace/tools/brands.py +23 -0
- sabel_forge_mcp-0.1.1/forge/mcp/workspace/tools/data_attributes.py +88 -0
- sabel_forge_mcp-0.1.1/forge/mcp/workspace/tools/folders.py +80 -0
- sabel_forge_mcp-0.1.1/forge/mcp/workspace/tools/help_center.py +111 -0
- sabel_forge_mcp-0.1.1/forge/mcp/workspace/tools/internal_articles.py +97 -0
- sabel_forge_mcp-0.1.1/forge/mcp/workspace/tools/macros.py +24 -0
- sabel_forge_mcp-0.1.1/forge/mcp/workspace/tools/news.py +129 -0
- sabel_forge_mcp-0.1.1/forge/mcp/workspace/tools/segments.py +28 -0
- sabel_forge_mcp-0.1.1/forge/mcp/workspace/tools/snapshot.py +255 -0
- sabel_forge_mcp-0.1.1/forge/mcp/workspace/tools/subscription_types.py +18 -0
- sabel_forge_mcp-0.1.1/forge/mcp/workspace/tools/tags.py +49 -0
- sabel_forge_mcp-0.1.1/forge/mcp/workspace/tools/teams.py +36 -0
- sabel_forge_mcp-0.1.1/forge/mcp/workspace/tools/ticket_types.py +189 -0
- sabel_forge_mcp-0.1.1/forge/mcp/workspace/tools/ui_create.py +258 -0
- sabel_forge_mcp-0.1.1/forge/mcp/workspaces_tool.py +25 -0
- sabel_forge_mcp-0.1.1/forge/migration/__init__.py +0 -0
- sabel_forge_mcp-0.1.1/forge/migration/dependency_graph.py +457 -0
- sabel_forge_mcp-0.1.1/forge/paths.py +89 -0
- sabel_forge_mcp-0.1.1/forge/ui_automation/__init__.py +0 -0
- sabel_forge_mcp-0.1.1/forge/ui_automation/away_status_reasons.py +445 -0
- sabel_forge_mcp-0.1.1/forge/ui_automation/away_status_reasons_payloads/example.yaml +5 -0
- sabel_forge_mcp-0.1.1/forge/ui_automation/brands.py +485 -0
- sabel_forge_mcp-0.1.1/forge/ui_automation/brands_payloads/example.yaml +4 -0
- sabel_forge_mcp-0.1.1/forge/ui_automation/conversation_attributes.py +553 -0
- sabel_forge_mcp-0.1.1/forge/ui_automation/data_connectors.py +774 -0
- sabel_forge_mcp-0.1.1/forge/ui_automation/data_connectors_payloads/example.yaml +3 -0
- sabel_forge_mcp-0.1.1/forge/ui_automation/fin_attributes.py +569 -0
- sabel_forge_mcp-0.1.1/forge/ui_automation/macros.py +437 -0
- sabel_forge_mcp-0.1.1/forge/ui_automation/macros_payloads/example.yaml +7 -0
- sabel_forge_mcp-0.1.1/forge/ui_automation/newsfeeds.py +311 -0
- sabel_forge_mcp-0.1.1/forge/ui_automation/newsfeeds_payloads/example.yaml +5 -0
- sabel_forge_mcp-0.1.1/forge/ui_automation/segments.py +27 -0
- sabel_forge_mcp-0.1.1/forge/ui_automation/session.py +189 -0
- sabel_forge_mcp-0.1.1/forge/ui_automation/subscription_types.py +423 -0
- sabel_forge_mcp-0.1.1/forge/ui_automation/subscription_types_payloads/example.yaml +10 -0
- sabel_forge_mcp-0.1.1/forge/ui_automation/teams.py +475 -0
- sabel_forge_mcp-0.1.1/forge/ui_automation/teams_payloads/example.yaml +8 -0
- sabel_forge_mcp-0.1.1/forge/ui_automation/ticket_states.py +452 -0
- sabel_forge_mcp-0.1.1/forge/ui_automation/ticket_states_payloads/example.yaml +10 -0
- sabel_forge_mcp-0.1.1/forge/ui_automation/workflow_payloads/example.yaml +12 -0
- sabel_forge_mcp-0.1.1/forge/ui_automation/workflows.py +849 -0
- sabel_forge_mcp-0.1.1/forge/workspace_config.py +212 -0
- sabel_forge_mcp-0.1.1/playbooks/ecommerce.md +260 -0
- sabel_forge_mcp-0.1.1/playbooks/gambling.md +486 -0
- 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'
|