# HIDENNSIM - Secure MCP Server with JAX Integration
A licensed Model Context Protocol (MCP) server providing JAX-based numerical computation tools with hardware-bound license validation.
## Features
- ✅ MCP server with `add_jax` tool for floating-point addition using JAX
- ✅ Layered security with Cython binary compilation (source code protected)
- ✅ Hardware-bound license validation system
- ✅ Cross-platform support (Windows, macOS, Linux)
- ✅ Available on PyPI - simple `pip install` installation
- ✅ Integration guides for Claude Desktop, Cursor, and ChatGPT
## Security
HIDENNSIM uses multiple layers of protection:
1. **Cython Compilation**: Core modules compiled to binary (.pyd/.so) for source code protection
2. **License Validation**: Hardware-bound licenses tied to machine fingerprint
3. **Encrypted Licensing**: Secure license file encryption with runtime validation
4. **Legal Protection**: Proprietary license terms and copyright protection
When installed via PyPI, users receive only compiled binaries - source code for security-sensitive modules is not distributed.
## Quick Start
### Installation Checklist
Follow these steps in order for successful setup:
- [ ] **Step 1:** Create virtual environment (`python -m venv hidennsim-env`)
- [ ] **Step 2:** Activate virtual environment
- [ ] **Step 3:** Install hidennsim (`pip install hidennsim`)
- [ ] **Step 4:** ⚠️ **REQUIRED:** Install JAX (`pip install "jax[cpu]"`)
- [ ] **Step 5:** Verify JAX works (`python -c "import jax"`)
- [ ] **Step 6:** Get hardware fingerprint (`hidennsim-license hardware`)
- [ ] **Step 7:** Obtain and activate license
- [ ] **Step 8:** Configure your LLM (Claude Desktop or Cursor IDE) with full path to `hidennsim.exe`
- [ ] **Step 9:** Restart your LLM application
### 1. Create Virtual Environment (Recommended)
Creating a virtual environment isolates HIDENNSIM and its dependencies from your system Python, preventing conflicts with other projects.
**macOS/Linux:**
```bash
python3 -m venv hidennsim-env
source hidennsim-env/bin/activate
```
**Windows (PowerShell):**
```powershell
python -m venv hidennsim-env
.\hidennsim-env\Scripts\Activate.ps1
```
**Windows (Command Prompt):**
```cmd
python -m venv hidennsim-env
hidennsim-env\Scripts\activate.bat
```
> **Note:** Your terminal prompt should now show `(hidennsim-env)` indicating the virtual environment is active.
### 2. Install HIDENNSIM
> **Important:** Ensure your virtual environment is activated before running pip install commands. Your terminal prompt should show `(hidennsim-env)`.
**Standard Installation (PyPI):**
```bash
pip install hidennsim
```
**Alternative: Install from Wheel File**
If you received a wheel file (.whl) directly:
**Windows (PowerShell):**
```powershell
pip install C:\Path\To\hidennsim-1.0.0-cp313-cp313-win_amd64.whl
```
**macOS/Linux:**
```bash
pip install /path/to/hidennsim-1.0.0-cp313-cp313-win_amd64.whl
```
> **Note:** For wheel-based installation details, see [CLIENT_INSTALLATION.md](CLIENT_INSTALLATION.md).
### 3. Install JAX (REQUIRED)
> **⚠️ CRITICAL:** JAX must be installed in the same virtual environment as HIDENNSIM. The MCP server will fail to start without it.
Ensure your virtual environment is activated (you should see `(hidennsim-env)` in your terminal prompt), then install JAX:
**CPU-Only (Recommended for most users):**
```bash
pip install "jax[cpu]"
```
**GPU-Accelerated (Linux or WSL2 only):**
> **⚠️ WINDOWS USERS:** JAX GPU (CUDA) support does **NOT** work on native Windows PowerShell or CMD. GPU acceleration requires either:
> - **Linux** (native installation)
> - **WSL2** (Windows Subsystem for Linux 2)
>
> If you need GPU acceleration on Windows, [install WSL2](https://learn.microsoft.com/en-us/windows/wsl/install) first, then install JAX inside your WSL2 environment.
For **Linux or WSL2** with NVIDIA GPU and CUDA 12:
```bash
pip install "jax[cuda12]"
```
For other CUDA versions, see [JAX installation guide](https://jax.readthedocs.io/en/latest/installation.html).
**Verify Installation:**
```bash
python -c "import jax; print('JAX', jax.__version__, 'installed successfully')"
```
Expected output (version may vary):
```
JAX 0.8.0 installed successfully
```
**Verify GPU Support (Linux/WSL2 only):**
```bash
python -c "import jax; print('GPUs available:', jax.devices())"
```
### 4. Get Hardware Fingerprint
```bash
hidennsim-license hardware
```
**Example output:**
```
🖥️ Hardware Fingerprint:
sha256:a1b2c3d4e5f6...
📝 Provide this fingerprint when purchasing a license.
```
**Important:** Copy this fingerprint - you'll need it to obtain your license.
### 5. Obtain License Key
Contact **sales@hidennsim.com** with:
- Your email address
- Hardware fingerprint from Step 4
- Desired license duration (1 year, 2 years, etc.)
You will receive a `license.key` file via email.
### 6. Activate License
Once you receive your `license.key` file:
```bash
hidennsim-license activate /path/to/license.key
```
**Success message:**
```
✅ License activated successfully!
📄 License Information:
License ID: HNNS-A1B2-C3D4-E5F6-G7H8
Issued to: user@example.com
Expires: 2026-10-18
```
### 7. Configure LLM
#### Claude Desktop Configuration
1. **Open Settings:**
- Click on the Claude icon in the top-right corner
- Select **Settings** from the menu
2. **Navigate to Developer Settings:**
- In the Settings window, go to the **Developer** tab
- Find the **Edit Config** button and click it
3. **Add MCP Server Configuration:**
Add the following configuration to the JSON file:
**macOS/Linux:**
```json
{
"mcpServers": {
"hidennsim": {
"command": "/full/path/to/hidennsim-env/bin/hidennsim",
"args": []
}
}
}
```
**Windows:**
```json
{
"mcpServers": {
"hidennsim": {
"command": "C:\\full\\path\\to\\hidennsim-env\\Scripts\\hidennsim.exe",
"args": []
}
}
}
```
> **Important:** Replace `/full/path/to/hidennsim-env` with the actual absolute path to your virtual environment.
4. **Save and Restart:**
- Save the configuration file
- Restart Claude Desktop for changes to take effect
#### Cursor IDE Configuration
1. **Open Settings:**
- Press `Ctrl+Shift+P` (Windows/Linux) or `Cmd+Shift+P` (macOS)
- Type "Settings" and select **Preferences: Open Settings (UI)**
2. **Navigate to MCP Settings:**
- In the Settings search bar, type "MCP"
- Click on **Cline > MCP: Servers**
- Click **Edit in settings.json** or find the **MCP Servers** section
**Alternative Method:**
- Go to **Cursor Settings** → **Cline** → **Tools & MCP**
- Click **New MCP Server**
3. **Add MCP Server Configuration:**
Add the following configuration:
**macOS/Linux:**
```json
{
"mcpServers": {
"hidennsim": {
"command": "/full/path/to/hidennsim-env/bin/hidennsim",
"args": []
}
}
}
```
**Windows:**
```json
{
"mcpServers": {
"hidennsim": {
"command": "C:\\full\\path\\to\\hidennsim-env\\Scripts\\hidennsim.exe",
"args": []
}
}
}
```
> **Important:** Replace the path with the actual absolute path to your virtual environment.
4. **Save and Restart:**
- Save the settings
- Restart Cursor IDE for changes to take effect
<details>
<summary>Advanced: Manual Configuration File Locations</summary>
If you prefer to edit configuration files directly:
**Claude Desktop:**
- macOS: `~/Library/Application Support/Claude/claude_desktop_config.json`
- Windows: `%APPDATA%\Claude\claude_desktop_config.json`
- Linux: `~/.config/Claude/claude_desktop_config.json`
**Cursor IDE:**
- macOS: `~/Library/Application Support/Cursor/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json`
- Windows: `%APPDATA%\Cursor\User\globalStorage\saoudrizwan.claude-dev\settings\cline_mcp_settings.json`
- Linux: `~/.config/Cursor/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json`
</details>
## Troubleshooting
### MCP Server Fails to Start
If Claude Desktop or Cursor IDE shows connection errors for the hidennsim MCP server:
**Error: "ModuleNotFoundError: No module named 'jax'"**
This means JAX is not installed in the virtual environment. Fix:
```bash
# Activate your virtual environment first
# Windows PowerShell:
.\hidennsim-env\Scripts\Activate.ps1
# macOS/Linux:
source hidennsim-env/bin/activate
# Install JAX
pip install "jax[cpu]"
# Verify
python -c "import jax; print('JAX installed successfully')"
```
**Error: "spawn ... hidennsim.exe ENOENT"**
The executable path in your Claude Desktop config is incorrect. Verify:
1. Check the path exists:
- Windows: `C:\path\to\hidennsim-env\Scripts\hidennsim.exe`
- macOS/Linux: `/path/to/hidennsim-env/bin/hidennsim`
2. Use absolute paths (not relative) in your config file
3. Restart Claude Desktop or Cursor IDE after config changes
### Verify Complete Installation
Run these commands to confirm everything is installed correctly:
```bash
# Check hidennsim installation
pip show hidennsim
# Check JAX installation
pip show jax
# Test the MCP server can start
hidennsim --help
```
All commands should complete without errors.
## Documentation
### User Documentation
- [Installation Guide](docs/installation.md)
- [Configuration Guide](docs/configuration.md)
- [License Activation](docs/license-activation.md)
- [Troubleshooting](docs/troubleshooting.md)
- [Client Installation (Wheel-based)](CLIENT_INSTALLATION.md)
### Developer Documentation
- [PyPI Implementation Complete](PYPI_IMPLEMENTATION_COMPLETE.md) - Implementation summary and quick commands
- [Cython Security Analysis](CYTHON_PYPI_SECURITY_ANALYSIS.md) - Security architecture and threat model
- [License Issue Resolution](build_scripts/LICENSE_ISSUE_RESOLUTION.md) - License signature validation troubleshooting
- [Critical Update Required](CRITICAL_UPDATE_REQUIRED.md) - **IMPORTANT:** PyPI package update status
## System Requirements
- **Python:** 3.10 or higher
- **Operating System:** Windows 10+, macOS 12+, or Linux (Ubuntu 20.04+)
- **RAM:** 4GB minimum (8GB recommended for GPU acceleration)
- **Disk Space:** 1GB for installation
## License
Proprietary - Contact support@hidennsim.com for licensing information.
## Support
- **Email:** support@hidennsim.com
- **Documentation:** https://hidennsim.readthedocs.io
- **Issues:** https://github.com/yourusername/hidennsim/issues
Raw data
{
"_id": null,
"home_page": "https://github.com/yourusername/hidennsim",
"name": "hidennsim",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.10",
"maintainer_email": null,
"keywords": "mcp, jax, numerical, llm, claude",
"author": "HIDENNSIM Team",
"author_email": "HIDENNSIM Team <support@hidennsim.com>",
"download_url": null,
"platform": null,
"description": "# HIDENNSIM - Secure MCP Server with JAX Integration\r\n\r\nA licensed Model Context Protocol (MCP) server providing JAX-based numerical computation tools with hardware-bound license validation.\r\n\r\n## Features\r\n\r\n- \u2705 MCP server with `add_jax` tool for floating-point addition using JAX\r\n- \u2705 Layered security with Cython binary compilation (source code protected)\r\n- \u2705 Hardware-bound license validation system\r\n- \u2705 Cross-platform support (Windows, macOS, Linux)\r\n- \u2705 Available on PyPI - simple `pip install` installation\r\n- \u2705 Integration guides for Claude Desktop, Cursor, and ChatGPT\r\n\r\n## Security\r\n\r\nHIDENNSIM uses multiple layers of protection:\r\n\r\n1. **Cython Compilation**: Core modules compiled to binary (.pyd/.so) for source code protection\r\n2. **License Validation**: Hardware-bound licenses tied to machine fingerprint\r\n3. **Encrypted Licensing**: Secure license file encryption with runtime validation\r\n4. **Legal Protection**: Proprietary license terms and copyright protection\r\n\r\nWhen installed via PyPI, users receive only compiled binaries - source code for security-sensitive modules is not distributed.\r\n\r\n## Quick Start\r\n\r\n### Installation Checklist\r\n\r\nFollow these steps in order for successful setup:\r\n\r\n- [ ] **Step 1:** Create virtual environment (`python -m venv hidennsim-env`)\r\n- [ ] **Step 2:** Activate virtual environment\r\n- [ ] **Step 3:** Install hidennsim (`pip install hidennsim`)\r\n- [ ] **Step 4:** \u26a0\ufe0f **REQUIRED:** Install JAX (`pip install \"jax[cpu]\"`)\r\n- [ ] **Step 5:** Verify JAX works (`python -c \"import jax\"`)\r\n- [ ] **Step 6:** Get hardware fingerprint (`hidennsim-license hardware`)\r\n- [ ] **Step 7:** Obtain and activate license\r\n- [ ] **Step 8:** Configure your LLM (Claude Desktop or Cursor IDE) with full path to `hidennsim.exe`\r\n- [ ] **Step 9:** Restart your LLM application\r\n\r\n### 1. Create Virtual Environment (Recommended)\r\n\r\nCreating a virtual environment isolates HIDENNSIM and its dependencies from your system Python, preventing conflicts with other projects.\r\n\r\n**macOS/Linux:**\r\n```bash\r\npython3 -m venv hidennsim-env\r\nsource hidennsim-env/bin/activate\r\n```\r\n\r\n**Windows (PowerShell):**\r\n```powershell\r\npython -m venv hidennsim-env\r\n.\\hidennsim-env\\Scripts\\Activate.ps1\r\n```\r\n\r\n**Windows (Command Prompt):**\r\n```cmd\r\npython -m venv hidennsim-env\r\nhidennsim-env\\Scripts\\activate.bat\r\n```\r\n\r\n> **Note:** Your terminal prompt should now show `(hidennsim-env)` indicating the virtual environment is active.\r\n\r\n### 2. Install HIDENNSIM\r\n\r\n> **Important:** Ensure your virtual environment is activated before running pip install commands. Your terminal prompt should show `(hidennsim-env)`.\r\n\r\n**Standard Installation (PyPI):**\r\n\r\n```bash\r\npip install hidennsim\r\n```\r\n\r\n**Alternative: Install from Wheel File**\r\n\r\nIf you received a wheel file (.whl) directly:\r\n\r\n**Windows (PowerShell):**\r\n```powershell\r\npip install C:\\Path\\To\\hidennsim-1.0.0-cp313-cp313-win_amd64.whl\r\n```\r\n\r\n**macOS/Linux:**\r\n```bash\r\npip install /path/to/hidennsim-1.0.0-cp313-cp313-win_amd64.whl\r\n```\r\n\r\n> **Note:** For wheel-based installation details, see [CLIENT_INSTALLATION.md](CLIENT_INSTALLATION.md).\r\n\r\n### 3. Install JAX (REQUIRED)\r\n\r\n> **\u26a0\ufe0f CRITICAL:** JAX must be installed in the same virtual environment as HIDENNSIM. The MCP server will fail to start without it.\r\n\r\nEnsure your virtual environment is activated (you should see `(hidennsim-env)` in your terminal prompt), then install JAX:\r\n\r\n**CPU-Only (Recommended for most users):**\r\n```bash\r\npip install \"jax[cpu]\"\r\n```\r\n\r\n**GPU-Accelerated (Linux or WSL2 only):**\r\n\r\n> **\u26a0\ufe0f WINDOWS USERS:** JAX GPU (CUDA) support does **NOT** work on native Windows PowerShell or CMD. GPU acceleration requires either:\r\n> - **Linux** (native installation)\r\n> - **WSL2** (Windows Subsystem for Linux 2)\r\n>\r\n> If you need GPU acceleration on Windows, [install WSL2](https://learn.microsoft.com/en-us/windows/wsl/install) first, then install JAX inside your WSL2 environment.\r\n\r\nFor **Linux or WSL2** with NVIDIA GPU and CUDA 12:\r\n```bash\r\npip install \"jax[cuda12]\"\r\n```\r\n\r\nFor other CUDA versions, see [JAX installation guide](https://jax.readthedocs.io/en/latest/installation.html).\r\n\r\n**Verify Installation:**\r\n```bash\r\npython -c \"import jax; print('JAX', jax.__version__, 'installed successfully')\"\r\n```\r\n\r\nExpected output (version may vary):\r\n```\r\nJAX 0.8.0 installed successfully\r\n```\r\n\r\n**Verify GPU Support (Linux/WSL2 only):**\r\n```bash\r\npython -c \"import jax; print('GPUs available:', jax.devices())\"\r\n```\r\n\r\n### 4. Get Hardware Fingerprint\r\n\r\n```bash\r\nhidennsim-license hardware\r\n```\r\n\r\n**Example output:**\r\n```\r\n\ud83d\udda5\ufe0f Hardware Fingerprint:\r\n sha256:a1b2c3d4e5f6...\r\n\r\n\ud83d\udcdd Provide this fingerprint when purchasing a license.\r\n```\r\n\r\n**Important:** Copy this fingerprint - you'll need it to obtain your license.\r\n\r\n### 5. Obtain License Key\r\n\r\nContact **sales@hidennsim.com** with:\r\n- Your email address\r\n- Hardware fingerprint from Step 4\r\n- Desired license duration (1 year, 2 years, etc.)\r\n\r\nYou will receive a `license.key` file via email.\r\n\r\n### 6. Activate License\r\n\r\nOnce you receive your `license.key` file:\r\n\r\n```bash\r\nhidennsim-license activate /path/to/license.key\r\n```\r\n\r\n**Success message:**\r\n```\r\n\u2705 License activated successfully!\r\n\r\n\ud83d\udcc4 License Information:\r\n License ID: HNNS-A1B2-C3D4-E5F6-G7H8\r\n Issued to: user@example.com\r\n Expires: 2026-10-18\r\n```\r\n\r\n### 7. Configure LLM\r\n\r\n#### Claude Desktop Configuration\r\n\r\n1. **Open Settings:**\r\n - Click on the Claude icon in the top-right corner\r\n - Select **Settings** from the menu\r\n\r\n2. **Navigate to Developer Settings:**\r\n - In the Settings window, go to the **Developer** tab\r\n - Find the **Edit Config** button and click it\r\n\r\n3. **Add MCP Server Configuration:**\r\n\r\n Add the following configuration to the JSON file:\r\n\r\n **macOS/Linux:**\r\n ```json\r\n {\r\n \"mcpServers\": {\r\n \"hidennsim\": {\r\n \"command\": \"/full/path/to/hidennsim-env/bin/hidennsim\",\r\n \"args\": []\r\n }\r\n }\r\n }\r\n ```\r\n\r\n **Windows:**\r\n ```json\r\n {\r\n \"mcpServers\": {\r\n \"hidennsim\": {\r\n \"command\": \"C:\\\\full\\\\path\\\\to\\\\hidennsim-env\\\\Scripts\\\\hidennsim.exe\",\r\n \"args\": []\r\n }\r\n }\r\n }\r\n ```\r\n\r\n > **Important:** Replace `/full/path/to/hidennsim-env` with the actual absolute path to your virtual environment.\r\n\r\n4. **Save and Restart:**\r\n - Save the configuration file\r\n - Restart Claude Desktop for changes to take effect\r\n\r\n#### Cursor IDE Configuration\r\n\r\n1. **Open Settings:**\r\n - Press `Ctrl+Shift+P` (Windows/Linux) or `Cmd+Shift+P` (macOS)\r\n - Type \"Settings\" and select **Preferences: Open Settings (UI)**\r\n\r\n2. **Navigate to MCP Settings:**\r\n - In the Settings search bar, type \"MCP\"\r\n - Click on **Cline > MCP: Servers**\r\n - Click **Edit in settings.json** or find the **MCP Servers** section\r\n\r\n **Alternative Method:**\r\n - Go to **Cursor Settings** \u2192 **Cline** \u2192 **Tools & MCP**\r\n - Click **New MCP Server**\r\n\r\n3. **Add MCP Server Configuration:**\r\n\r\n Add the following configuration:\r\n\r\n **macOS/Linux:**\r\n ```json\r\n {\r\n \"mcpServers\": {\r\n \"hidennsim\": {\r\n \"command\": \"/full/path/to/hidennsim-env/bin/hidennsim\",\r\n \"args\": []\r\n }\r\n }\r\n }\r\n ```\r\n\r\n **Windows:**\r\n ```json\r\n {\r\n \"mcpServers\": {\r\n \"hidennsim\": {\r\n \"command\": \"C:\\\\full\\\\path\\\\to\\\\hidennsim-env\\\\Scripts\\\\hidennsim.exe\",\r\n \"args\": []\r\n }\r\n }\r\n }\r\n ```\r\n\r\n > **Important:** Replace the path with the actual absolute path to your virtual environment.\r\n\r\n4. **Save and Restart:**\r\n - Save the settings\r\n - Restart Cursor IDE for changes to take effect\r\n\r\n<details>\r\n<summary>Advanced: Manual Configuration File Locations</summary>\r\n\r\nIf you prefer to edit configuration files directly:\r\n\r\n**Claude Desktop:**\r\n- macOS: `~/Library/Application Support/Claude/claude_desktop_config.json`\r\n- Windows: `%APPDATA%\\Claude\\claude_desktop_config.json`\r\n- Linux: `~/.config/Claude/claude_desktop_config.json`\r\n\r\n**Cursor IDE:**\r\n- macOS: `~/Library/Application Support/Cursor/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json`\r\n- Windows: `%APPDATA%\\Cursor\\User\\globalStorage\\saoudrizwan.claude-dev\\settings\\cline_mcp_settings.json`\r\n- Linux: `~/.config/Cursor/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json`\r\n\r\n</details>\r\n\r\n## Troubleshooting\r\n\r\n### MCP Server Fails to Start\r\n\r\nIf Claude Desktop or Cursor IDE shows connection errors for the hidennsim MCP server:\r\n\r\n**Error: \"ModuleNotFoundError: No module named 'jax'\"**\r\n\r\nThis means JAX is not installed in the virtual environment. Fix:\r\n\r\n```bash\r\n# Activate your virtual environment first\r\n# Windows PowerShell:\r\n.\\hidennsim-env\\Scripts\\Activate.ps1\r\n\r\n# macOS/Linux:\r\nsource hidennsim-env/bin/activate\r\n\r\n# Install JAX\r\npip install \"jax[cpu]\"\r\n\r\n# Verify\r\npython -c \"import jax; print('JAX installed successfully')\"\r\n```\r\n\r\n**Error: \"spawn ... hidennsim.exe ENOENT\"**\r\n\r\nThe executable path in your Claude Desktop config is incorrect. Verify:\r\n\r\n1. Check the path exists:\r\n - Windows: `C:\\path\\to\\hidennsim-env\\Scripts\\hidennsim.exe`\r\n - macOS/Linux: `/path/to/hidennsim-env/bin/hidennsim`\r\n\r\n2. Use absolute paths (not relative) in your config file\r\n\r\n3. Restart Claude Desktop or Cursor IDE after config changes\r\n\r\n### Verify Complete Installation\r\n\r\nRun these commands to confirm everything is installed correctly:\r\n\r\n```bash\r\n# Check hidennsim installation\r\npip show hidennsim\r\n\r\n# Check JAX installation\r\npip show jax\r\n\r\n# Test the MCP server can start\r\nhidennsim --help\r\n```\r\n\r\nAll commands should complete without errors.\r\n\r\n## Documentation\r\n\r\n### User Documentation\r\n- [Installation Guide](docs/installation.md)\r\n- [Configuration Guide](docs/configuration.md)\r\n- [License Activation](docs/license-activation.md)\r\n- [Troubleshooting](docs/troubleshooting.md)\r\n- [Client Installation (Wheel-based)](CLIENT_INSTALLATION.md)\r\n\r\n### Developer Documentation\r\n- [PyPI Implementation Complete](PYPI_IMPLEMENTATION_COMPLETE.md) - Implementation summary and quick commands\r\n- [Cython Security Analysis](CYTHON_PYPI_SECURITY_ANALYSIS.md) - Security architecture and threat model\r\n- [License Issue Resolution](build_scripts/LICENSE_ISSUE_RESOLUTION.md) - License signature validation troubleshooting\r\n- [Critical Update Required](CRITICAL_UPDATE_REQUIRED.md) - **IMPORTANT:** PyPI package update status\r\n\r\n## System Requirements\r\n\r\n- **Python:** 3.10 or higher\r\n- **Operating System:** Windows 10+, macOS 12+, or Linux (Ubuntu 20.04+)\r\n- **RAM:** 4GB minimum (8GB recommended for GPU acceleration)\r\n- **Disk Space:** 1GB for installation\r\n\r\n## License\r\n\r\nProprietary - Contact support@hidennsim.com for licensing information.\r\n\r\n## Support\r\n\r\n- **Email:** support@hidennsim.com\r\n- **Documentation:** https://hidennsim.readthedocs.io\r\n- **Issues:** https://github.com/yourusername/hidennsim/issues\r\n",
"bugtrack_url": null,
"license": "Proprietary",
"summary": "Secure MCP server with JAX-based numerical tools",
"version": "1.0.12",
"project_urls": {
"Documentation": "https://hidennsim.readthedocs.io",
"Homepage": "https://github.com/yourusername/hidennsim",
"Issues": "https://github.com/yourusername/hidennsim/issues"
},
"split_keywords": [
"mcp",
" jax",
" numerical",
" llm",
" claude"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "c0a364ece17d458972ddabba3dcaf3c64b67588f6695e6d8fc92247818b1c0c7",
"md5": "b99f9ffba21663519199ae1c27a5c1d2",
"sha256": "99bd5bbd3625a057fa9aedae03fdcdbd849475f7746ed4d683b6ab5c6b29996f"
},
"downloads": -1,
"filename": "hidennsim-1.0.12-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "b99f9ffba21663519199ae1c27a5c1d2",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.10",
"size": 168774,
"upload_time": "2025-10-22T14:52:43",
"upload_time_iso_8601": "2025-10-22T14:52:43.208349Z",
"url": "https://files.pythonhosted.org/packages/c0/a3/64ece17d458972ddabba3dcaf3c64b67588f6695e6d8fc92247818b1c0c7/hidennsim-1.0.12-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-10-22 14:52:43",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "yourusername",
"github_project": "hidennsim",
"github_not_found": true,
"lcname": "hidennsim"
}