thegooseforce


Namethegooseforce JSON
Version 0.9.6 PyPI version JSON
download
home_pageNone
SummaryTheGooseForce - A Salesforce integration extension for Goose
upload_time2025-02-13 21:12:57
maintainerNone
docs_urlNone
authorTristan Nohrer
requires_python>=3.10
licenseMIT
keywords goose mcp salesforce
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # TheGooseForce
TheGooseForce is a Salesforce extension for Goose that makes any Salesforce user a Salesforce super user! 

## Features
- **Salesforce API Integration**: Direct connection to your Salesforce org
- **Case Management**: Handle case-related operations using LLMs such as summarizing details and suggesting next actions to take
- **Knowledge Articles**: Easily find related knowledge articles to your existing issues and have them summaraized via GooseForce.
- **Automated Workflows**: Execute complex Salesforce operations through simple commands
- **Build and deploy custom components**: Build and deploy custom components such as LWCs, Apex, and Aura cmps straight from Goose
- **Debugging**: Use the Gooseforce to help you debug issues in salesforce

- If you can dream it, Gooseforce can do it! 

## Prerequisites
- Python 3.10 or higher
- Salesforce org access
- Goose CLI installed
- Required Python packages (see requirements.txt)
- Must start virtual environment before installing the extension

## Installation

1. Clone the repository:
```
git clone https://github.com/tnohrer/TheGooseForce.git
cd TheGooseForce
```

Create and activate virtual environment:

2. Create virtual environment
```
python -m venv .venv
```

# Activate virtual environment
# Windows:
```
.venv\Scripts\activate
```
# macOS/Linux:
```
source .venv/bin/activate
```
3. Install required packages:

```
pip install -r requirements.txt
```
4. Find your Python and server.py paths:

```
# Get Python path (make sure virtual environment is activated)
which python3

# Verify server.py location
ls -l src/thegooseforce/server.py
```


⚠️ Security Note: This extension currently uses direct login via username, password, and security token. Future versions will implement OAuth2 for enhanced security.

## Goose Extension Setup
To add TheGooseForce to Goose:

### Open Goose
1. Click on the three dots (⋮) in the top right corner
2. Select "Extensions"
3. Click "Add Extension"
4. Fill in the following details:
```
ID: salesforce-mcp
Name: TheGooseForce
Description: Whatever description you want to put. I suggest something funny like "The Goose is loose and it's in Salesforce"
Command: /Users/[username]/Desktop/GooseForce-main/.venv/bin/python3 /Users/[username]/Desktop/GooseForce-main/server.py
```
Replace [username] with your actual username
Note: The command should point to the Python executable in your virtual environment and the server.py file in your installation directory. Make sure to use absolute paths.

5. Setup the needed variables:

```
SALESFORCE_USERNAME: Your Salesforce username
SALESFORCE_PASSWORD: Your Salesforce password
SALESFORCE_SECURITY_TOKEN: Your Salesforce security token
SALESFORCE_INSTANCE_URL: https://test.salesforce.com 
```
Note: These can be changed at any time by clicking the gear icon next to the extension. 

Note: https://test.salesforce.com for a sandbox or https://login.salesforce.com for a production instance. 

After adding the extension:

1. Click "Save"
2. The extension will appear in your extensions list
3. You can now use TheGooseForce capabilities through Goose


## Troubleshooting
Common Setup Issues:

1. Extension Not Loading

```
Verify paths in command are correct and absolute
Check virtual environment is activated
Ensure all requirements are installed
Check logs in Goose developer console (⌘+Option+I)
```

2. Authentication Errors

```
Verify Salesforce credentials in .env file
Check security token is current
Ensure IP address is allowed in Salesforce
Confirm user has API access enabled
```
3. Python Path Issues

```
Use which python3 to verify Python path
Ensure virtual environment is properly activated
Check Python version matches requirements
```
4. Permission Issues

```
Check file permissions on server.py
Verify user has execute permissions on Python
Ensure .env file is readable
```

5. Connection Issues

```
Check internet connectivity
Verify Salesforce org is accessible
Confirm no VPN conflicts
Check for Salesforce maintenance windows
```

Quick Fixes:

Restart Goose after configuration changes
Delete and recreate extension if settings aren't saving
Clear Goose cache if persistent issues occur
Check extension logs for detailed error messages

## Configuration
The extension can be configured through:

Environment variables
.env file
Goose extension settings


## Contributing
This is an open-source project. Contributions, issues, and feature requests are welcome.



## Future Enhancements
OAuth2 implementation
Enhanced security features
Additional Salesforce object support
Expanded query capabilities


            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "thegooseforce",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.10",
    "maintainer_email": null,
    "keywords": "goose, mcp, salesforce",
    "author": "Tristan Nohrer",
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/82/97/979b7ea3b66b3c4d3f73e1b02c25f7edc1ffb823309c516b5e642ac608bf/thegooseforce-0.9.6.tar.gz",
    "platform": null,
    "description": "# TheGooseForce\nTheGooseForce is a Salesforce extension for Goose that makes any Salesforce user a Salesforce super user! \n\n## Features\n- **Salesforce API Integration**: Direct connection to your Salesforce org\n- **Case Management**: Handle case-related operations using LLMs such as summarizing details and suggesting next actions to take\n- **Knowledge Articles**: Easily find related knowledge articles to your existing issues and have them summaraized via GooseForce.\n- **Automated Workflows**: Execute complex Salesforce operations through simple commands\n- **Build and deploy custom components**: Build and deploy custom components such as LWCs, Apex, and Aura cmps straight from Goose\n- **Debugging**: Use the Gooseforce to help you debug issues in salesforce\n\n- If you can dream it, Gooseforce can do it! \n\n## Prerequisites\n- Python 3.10 or higher\n- Salesforce org access\n- Goose CLI installed\n- Required Python packages (see requirements.txt)\n- Must start virtual environment before installing the extension\n\n## Installation\n\n1. Clone the repository:\n```\ngit clone https://github.com/tnohrer/TheGooseForce.git\ncd TheGooseForce\n```\n\nCreate and activate virtual environment:\n\n2. Create virtual environment\n```\npython -m venv .venv\n```\n\n# Activate virtual environment\n# Windows:\n```\n.venv\\Scripts\\activate\n```\n# macOS/Linux:\n```\nsource .venv/bin/activate\n```\n3. Install required packages:\n\n```\npip install -r requirements.txt\n```\n4. Find your Python and server.py paths:\n\n```\n# Get Python path (make sure virtual environment is activated)\nwhich python3\n\n# Verify server.py location\nls -l src/thegooseforce/server.py\n```\n\n\n\u26a0\ufe0f Security Note: This extension currently uses direct login via username, password, and security token. Future versions will implement OAuth2 for enhanced security.\n\n## Goose Extension Setup\nTo add TheGooseForce to Goose:\n\n### Open Goose\n1. Click on the three dots (\u22ee) in the top right corner\n2. Select \"Extensions\"\n3. Click \"Add Extension\"\n4. Fill in the following details:\n```\nID: salesforce-mcp\nName: TheGooseForce\nDescription: Whatever description you want to put. I suggest something funny like \"The Goose is loose and it's in Salesforce\"\nCommand: /Users/[username]/Desktop/GooseForce-main/.venv/bin/python3 /Users/[username]/Desktop/GooseForce-main/server.py\n```\nReplace [username] with your actual username\nNote: The command should point to the Python executable in your virtual environment and the server.py file in your installation directory. Make sure to use absolute paths.\n\n5. Setup the needed variables:\n\n```\nSALESFORCE_USERNAME: Your Salesforce username\nSALESFORCE_PASSWORD: Your Salesforce password\nSALESFORCE_SECURITY_TOKEN: Your Salesforce security token\nSALESFORCE_INSTANCE_URL: https://test.salesforce.com \n```\nNote: These can be changed at any time by clicking the gear icon next to the extension. \n\nNote: https://test.salesforce.com for a sandbox or https://login.salesforce.com for a production instance. \n\nAfter adding the extension:\n\n1. Click \"Save\"\n2. The extension will appear in your extensions list\n3. You can now use TheGooseForce capabilities through Goose\n\n\n## Troubleshooting\nCommon Setup Issues:\n\n1. Extension Not Loading\n\n```\nVerify paths in command are correct and absolute\nCheck virtual environment is activated\nEnsure all requirements are installed\nCheck logs in Goose developer console (\u2318+Option+I)\n```\n\n2. Authentication Errors\n\n```\nVerify Salesforce credentials in .env file\nCheck security token is current\nEnsure IP address is allowed in Salesforce\nConfirm user has API access enabled\n```\n3. Python Path Issues\n\n```\nUse which python3 to verify Python path\nEnsure virtual environment is properly activated\nCheck Python version matches requirements\n```\n4. Permission Issues\n\n```\nCheck file permissions on server.py\nVerify user has execute permissions on Python\nEnsure .env file is readable\n```\n\n5. Connection Issues\n\n```\nCheck internet connectivity\nVerify Salesforce org is accessible\nConfirm no VPN conflicts\nCheck for Salesforce maintenance windows\n```\n\nQuick Fixes:\n\nRestart Goose after configuration changes\nDelete and recreate extension if settings aren't saving\nClear Goose cache if persistent issues occur\nCheck extension logs for detailed error messages\n\n## Configuration\nThe extension can be configured through:\n\nEnvironment variables\n.env file\nGoose extension settings\n\n\n## Contributing\nThis is an open-source project. Contributions, issues, and feature requests are welcome.\n\n\n\n## Future Enhancements\nOAuth2 implementation\nEnhanced security features\nAdditional Salesforce object support\nExpanded query capabilities\n\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "TheGooseForce - A Salesforce integration extension for Goose",
    "version": "0.9.6",
    "project_urls": {
        "Homepage": "https://github.com/tnohrer/TheGooseForce/"
    },
    "split_keywords": [
        "goose",
        " mcp",
        " salesforce"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f4aaff60c5713a6612a3d4b51ee1b85b2630bd1730a303f993dab71a51953d15",
                "md5": "770553f7e79f65dfdfa42c0d58478c9a",
                "sha256": "1d751054816ec11e77f49963352e4305e7992cb87bbc2b7867986d4e2db1a4a2"
            },
            "downloads": -1,
            "filename": "thegooseforce-0.9.6-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "770553f7e79f65dfdfa42c0d58478c9a",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.10",
            "size": 6288,
            "upload_time": "2025-02-13T21:12:56",
            "upload_time_iso_8601": "2025-02-13T21:12:56.279099Z",
            "url": "https://files.pythonhosted.org/packages/f4/aa/ff60c5713a6612a3d4b51ee1b85b2630bd1730a303f993dab71a51953d15/thegooseforce-0.9.6-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8297979b7ea3b66b3c4d3f73e1b02c25f7edc1ffb823309c516b5e642ac608bf",
                "md5": "2d0987b31670c37d12d148abed6c6bdd",
                "sha256": "671836e2371f0bbf9f38617c1a9b710048754b5cea3eeed89f8fb5e5b2b2179c"
            },
            "downloads": -1,
            "filename": "thegooseforce-0.9.6.tar.gz",
            "has_sig": false,
            "md5_digest": "2d0987b31670c37d12d148abed6c6bdd",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.10",
            "size": 4700,
            "upload_time": "2025-02-13T21:12:57",
            "upload_time_iso_8601": "2025-02-13T21:12:57.200245Z",
            "url": "https://files.pythonhosted.org/packages/82/97/979b7ea3b66b3c4d3f73e1b02c25f7edc1ffb823309c516b5e642ac608bf/thegooseforce-0.9.6.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-02-13 21:12:57",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "tnohrer",
    "github_project": "TheGooseForce",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "thegooseforce"
}
        
Elapsed time: 0.71155s