Skip to main content

Enterprise MCP server for U2 UniData/UniVerse — JWT auth, RBAC, audit logging, admin UI

Project description

UOFastMCP

Enterprise MCP server for U2 UniData/UniVerse — JWT auth, RBAC, audit logging, built-in admin UI to simplify the setup process.

Developer: RokiPark · License: MIT · Python: 3.11+


Install & Run

# 1. Create a folder and virtual environment
python -m venv .venv
source .venv/bin/activate        # Windows: .venv\Scripts\activate

# 2. Install
pip install uofast-mcp

# 3. Set required env var
export JWT_SECRET_KEY=$(python -c "import secrets; print(secrets.token_hex(32))")
# Windows: set JWT_SECRET_KEY=<paste output of above>

# 4. Start
uofast-mcp

Server starts at http://localhost:8000


First-Time Setup

  1. Open http://localhost:8000/admin
  2. Log in: admin / changeme123!

Admin login

  1. Click Server Setup in the left menu

Admin menu

  1. Follow the 5-step wizard:
    • Check prerequisites
    • Set JWT secret + change admin password
    • Configure your U2 connection (with live test)
    • Review generated .env and unidata_config.ini
    • Copy your Claude / VSCode / CLI connection config

Setup wizard — U2 connection step


Connect Claude

Important: UOFastMCP is an HTTP/SSE server — it must be connected to via URL, not launched as a subprocess command. Configuring it as a command ("command": "uofast-mcp") will cause a port conflict if the server is already running.

Step 1 — Start the server

uofast-mcp

Keep this running in a terminal. The server must be running before any client connects.

Step 2 — Get your connection token

Open http://localhost:8000/auth/login, log in, and copy the Authorization token shown — or generate it manually:

python -c "import base64; print(base64.b64encode(b'admin:changeme123!').encode().decode())"

Step 3 — Register with your client

Claude Code CLI / VSCode extension

claude mcp add --transport sse UOFastMCP http://localhost:8000/sse \
  --header "Authorization: Basic <your-base64-token>"

This writes the config automatically. To verify it was added:

claude mcp list

VSCode — manual config (.vscode/mcp.json or user settings.json)

{
  "servers": {
    "UOFastMCP": {
      "type": "sse",
      "url": "http://localhost:8000/sse",
      "headers": {
        "Authorization": "Basic <your-base64-token>"
      }
    }
  }
}

Claude Desktop (claude_desktop_config.json)

{
  "mcpServers": {
    "UOFastMCP": {
      "url": "http://localhost:8000/sse",
      "headers": {
        "Authorization": "Basic <your-base64-token>"
      }
    }
  }
}

Troubleshooting: "port already in use" / "Error during MCP server startup"

This error means the client is trying to launch uofast-mcp as a subprocess instead of connecting to the running server.

Cause: The server is registered as "command": "uofast-mcp" in your MCP config instead of as a URL.

Fix: Remove the command-based entry and re-add it using the claude mcp add --transport sse command above. Then restart the server:

# Windows
taskkill /F /IM python.exe
uofast-mcp

# macOS / Linux
pkill -f uofast-mcp
uofast-mcp

MCP Tools (20 tools)

Category Tools
Connections list_connections, add_connection, close_connection
Files & Records list_files, select_records, read_record, query_file, read_record_with_fields, write_record_with_fields
Dictionary get_dict_items, query_with_dict_fields, read_dict_item, write_dict_item, update_dict_item, delete_dict_item
Commands & BP execute_command, read_bp_program, write_bp_program, compile_bp_program

Roles

Role Access
admin Everything
developer Read/write records, DICT, BP + manage connections
analyst Read records, DICT + execute commands
readonly Read connections, files, records, DICT
service_account Same as readonly — customisable

Manage users and permissions at http://localhost:8000/admin.


Admin UI

http://localhost:8000/admin — login with admin credentials.

Section URL Purpose
Users /admin/user/list Create/edit users, assign roles
Roles / Permissions /admin/role/list Manage RBAC
Audit Logs /admin/auditlog/list Every tool call logged — read-only
UniData Connections /admin/connections View unidata_config.ini, test connections live
Server Setup /admin/setup Change password, JWT secret, U2 connection

Environment Variables

Variable Required Default Description
JWT_SECRET_KEY Yes Long random string — keep secret
INITIAL_ADMIN_PASSWORD No changeme123! Admin password on first startup
DATABASE_URL No sqlite+aiosqlite:///./data/security.db Security DB location
ENABLE_DOCS No true Set false to hide /docs in production

API Endpoints

Endpoint Auth Description
GET /health None Health check
GET /sse Basic MCP SSE connection
GET/POST /auth/login None Login page — returns ready-to-use connection config
POST /auth/provision Admin Create user + return their connection command
GET /admin Admin session Web admin UI
GET /admin/connections Admin session View UniData connections from unidata_config.ini
GET /admin/setup Admin session Server setup wizard
GET /docs None Swagger UI

Troubleshooting

Server won't startJWT_SECRET_KEY not set, or port 8000 in use (uvicorn uofast_mcp.app:app --port 8001).

401 Unauthorized — get credentials from /auth/login.

403 Forbidden — user's role lacks the required permission; check Admin → Role Permissions.

U2 connection fails — re-run Server Setup wizard to update credentials and test live.

Reset everything — delete data/security.db and restart (loses all users and audit logs).


License

MIT — © 2025 RokiPark. All rights reserved.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

uofast_mcp-1.1.7.tar.gz (66.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

uofast_mcp-1.1.7-py3-none-any.whl (75.0 kB view details)

Uploaded Python 3

File details

Details for the file uofast_mcp-1.1.7.tar.gz.

File metadata

  • Download URL: uofast_mcp-1.1.7.tar.gz
  • Upload date:
  • Size: 66.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.9

File hashes

Hashes for uofast_mcp-1.1.7.tar.gz
Algorithm Hash digest
SHA256 5d885a94d45b1d34ec9a5e2af13347dca7c0bcf45721f9016b41959ba6e9a1bf
MD5 ec4f2ca7b56aac2a2bb5d0ae2aa1085f
BLAKE2b-256 5df6a7d0c076fbade705e956443f0141e2a842aff67ceaf25b7f1a90508b2775

See more details on using hashes here.

File details

Details for the file uofast_mcp-1.1.7-py3-none-any.whl.

File metadata

  • Download URL: uofast_mcp-1.1.7-py3-none-any.whl
  • Upload date:
  • Size: 75.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.9

File hashes

Hashes for uofast_mcp-1.1.7-py3-none-any.whl
Algorithm Hash digest
SHA256 aeb6fb8541556ab0dcf3889ecd3c6a8727a2766ba6c96aab04b41d2023eadaf1
MD5 8950f759e564dcb71997457082b98a65
BLAKE2b-256 8e2638381194fb8cbaf4f5a0a08d4ef8bd616363b71a9492288fd0254332a753

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page