iSuite Operations MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@iSuite Operations MCP ServerList all users with admin role"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
iSuite Operations MCP Server
A Model Context Protocol (MCP) server that exposes 48 tools covering the full spectrum of iSuite enterprise administration — user management, role verification, job monitoring, scheduler control, batch execution, audit trail lookup, and configuration validation.
Table of Contents
Related MCP server: Skills MCP AD
Overview
src/
index.ts MCP server entry point (stdio transport)
server-config.ts Environment-based connection configuration
tools/
users.ts 8 tools — user CRUD, disable/enable, password reset
roles.ts 7 tools — role listing, permission checks, assign/revoke
jobs.ts 7 tools — job status, running/failed lists, cancel, retry
scheduler.ts 7 tools — schedule management, upcoming jobs, history
batch.ts 6 tools — batch status, rerun, cancel, history
audit.ts 6 tools — log search, user activity, export, login history
config.ts 7 tools — config validation, health check, compare envsRuntime: Node.js 18+
Transport: stdio (works with any MCP-compatible client)
Authentication: API Key, Bearer token, or Basic auth
Prerequisites
Requirement | Version |
Node.js | 18 or later |
npm | 9 or later |
iSuite instance | With REST API access enabled |
Installation
# Clone or download the project
cd c:\NewInitiatives\mcp\mcp-isuite
# Install dependencies (zero vulnerabilities)
npm installConfiguration
Copy the example environment file and fill in your iSuite connection details:
copy .env.example .envEdit .env:
# Required
ISUITE_BASE_URL=https://isuite.yourcompany.com/api/v1
ISUITE_API_KEY=your-api-key-here
# Auth type: apikey | bearer | basic
ISUITE_AUTH_TYPE=apikey
# For basic auth only
ISUITE_USERNAME=
ISUITE_PASSWORD=
# Optional
ISUITE_ENVIRONMENT=production
ISUITE_TIMEOUT_MS=30000
ISUITE_VERIFY_TLS=trueNote: The server reads environment variables at startup. When integrating with Cline or Roo, set these in the plugin's MCP server
envblock (see below) rather than relying on a.envfile.
Build
npm run buildCompiled output lands in dist/. The entry point is dist/index.js.
To verify the build:
node dist/index.js
# Expected output on stderr: iSuite Operations MCP server running on stdioPress Ctrl+C to stop.
VS Code Integration — Cline
Cline is a VS Code extension that supports MCP servers natively.
Step 1 — Install Cline
Open VS Code → Extensions (Ctrl+Shift+X) → search Cline → Install.
Step 2 — Open MCP Settings
Click the Cline icon in the Activity Bar.
Click the MCP Servers button (plug icon) in the Cline panel header.
Click Edit MCP Settings — this opens
cline_mcp_settings.json.
Step 3 — Add the iSuite Server
{
"mcpServers": {
"isuite": {
"command": "node",
"args": ["c:/NewInitiatives/mcp/mcp-isuite/dist/index.js"],
"env": {
"ISUITE_BASE_URL": "https://isuite.yourcompany.com/api/v1",
"ISUITE_API_KEY": "your-api-key-here",
"ISUITE_AUTH_TYPE": "apikey",
"ISUITE_ENVIRONMENT": "production",
"ISUITE_TIMEOUT_MS": "30000"
},
"disabled": false,
"alwaysAllow": []
}
}
}Windows path note: Use forward slashes (
/) or escaped backslashes (\\) in JSON paths.
Step 4 — Verify Connection
Save
cline_mcp_settings.json.In the Cline panel, the isuite server should appear with a green dot.
Click the server name to see all 48 registered tools listed.
Step 5 — Use in Chat
Open a Cline chat and type any of the example prompts below.
VS Code Integration — Roo
Roo Code (formerly Roo Cline) is a Cline fork with additional features and its own MCP configuration.
Step 1 — Install Roo Code
Open VS Code → Extensions (Ctrl+Shift+X) → search Roo Code → Install.
Step 2 — Open Roo MCP Settings
Option A — Via Command Palette:
Ctrl+Shift+P → Roo Code: Open MCP SettingsOption B — Via UI:
Click the Roo Code icon in the Activity Bar.
Click the gear icon → MCP Servers.
Click Edit Global MCP Settings.
This opens %APPDATA%\Code\User\globalStorage\rooveterinaryinc.roo-cline\settings\mcp_settings.json on Windows.
Step 3 — Add the iSuite Server
{
"mcpServers": {
"isuite": {
"command": "node",
"args": ["c:/NewInitiatives/mcp/mcp-isuite/dist/index.js"],
"env": {
"ISUITE_BASE_URL": "https://isuite.yourcompany.com/api/v1",
"ISUITE_API_KEY": "your-api-key-here",
"ISUITE_AUTH_TYPE": "apikey",
"ISUITE_ENVIRONMENT": "production",
"ISUITE_TIMEOUT_MS": "30000"
},
"disabled": false,
"alwaysAllow": [
"list_users",
"get_user",
"list_roles",
"get_user_roles",
"list_running_jobs",
"list_failed_jobs",
"get_job_status",
"list_schedules",
"get_scheduler_status",
"list_running_batches",
"search_audit_logs",
"check_system_health",
"get_config_value",
"list_config_keys"
]
}
}
}
alwaysAllowlists read-only tools that Roo will call without prompting for permission. Write/mutating tools (create, delete, cancel, rerun) are intentionally omitted so Roo asks before executing them.
Step 4 — Workspace-Scoped Config (Optional)
To scope the MCP server to a single workspace, create .roo/mcp.json in your project root instead:
{
"mcpServers": {
"isuite": {
"command": "node",
"args": ["c:/NewInitiatives/mcp/mcp-isuite/dist/index.js"],
"env": {
"ISUITE_BASE_URL": "https://isuite.yourcompany.com/api/v1",
"ISUITE_API_KEY": "your-api-key-here",
"ISUITE_ENVIRONMENT": "staging"
}
}
}
}This is useful for pointing different workspaces at different iSuite environments (prod vs. staging).
Step 5 — Verify Connection
Open the Roo Code panel.
Click the MCP tab — the isuite server should show as connected.
Expand it to confirm all 48 tools are listed.
Claude Desktop Integration
For use with the Claude Desktop app, edit claude_desktop_config.json:
Windows: %APPDATA%\Claude\claude_desktop_config.json
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"isuite": {
"command": "node",
"args": ["c:/NewInitiatives/mcp/mcp-isuite/dist/index.js"],
"env": {
"ISUITE_BASE_URL": "https://isuite.yourcompany.com/api/v1",
"ISUITE_API_KEY": "your-api-key-here",
"ISUITE_AUTH_TYPE": "apikey",
"ISUITE_ENVIRONMENT": "production"
}
}
}
}Restart Claude Desktop after saving.
Available Tools
User Management
Tool | Description |
| List users with status/role filters and pagination |
| Full profile for a user by ID or username |
| Create a new user account with role assignments |
| Update email, name, department, or manager |
| Disable account (preserves data, blocks login) |
| Re-enable a disabled account |
| Permanently delete a user, with ownership transfer |
| Send reset email or return temporary password |
Role Verification
Tool | Description |
| All roles, optionally with full permission lists |
| Full details and permissions for one role |
| All roles assigned to a specific user |
| Check if a user has a specific permission |
| Assign a role (supports temporary/expiring assignments) |
| Remove a role from a user |
| All users who hold a given role |
Job Status Monitoring
Tool | Description |
| Status, progress, and details for a job execution |
| All currently running jobs |
| Failed jobs filtered by time range and type |
| Completed jobs filtered by time range |
| Full run history for a job definition |
| Gracefully or forcefully cancel a running job |
| Retry a failed job, optionally from a specific step |
Scheduler Monitoring
Tool | Description |
| All schedules with status filter |
| Full details including cron expression and next run |
| Scheduler engine status (running/paused/standby) |
| Resume a disabled schedule |
| Pause a schedule without deleting it |
| Jobs scheduled to run within N hours |
| Past execution history for a schedule |
Batch Execution Status
Tool | Description |
| Status, progress, and step details for a batch |
| Batch jobs filtered by status and time range |
| All currently executing batch jobs |
| Execution history for a batch definition |
| Re-execute from failure point or beginning |
| Cancel a running or pending batch job |
Audit Trail Lookup
Tool | Description |
| Full-text + field search across audit logs |
| Complete details for a single log entry |
| All actions performed by a specific user |
| System changes (config, roles, schedules) within N hours |
| Export logs to CSV, JSON, or XLSX |
| Login, logout, and failed login events |
Configuration Validation
Tool | Description |
| Validate all or a specific config section |
| Get a config value by dot-notation key |
| All config keys, filterable by section |
| Diff configuration between two environments |
| Health check all subsystems (DB, cache, queue, etc.) |
| Test a named connection (DB, SMTP, SFTP, S3, etc.) |
| Update a config value (requires admin permission) |
Example Prompts
Copy and paste any of these into Cline, Roo, or Claude to get started.
User Management
List all active iSuite users in the Finance department and show me
which roles each one has assigned.Create a new iSuite user account for Jane Smith (jsmith@company.com)
in the Operations department. Assign her the OPERATOR and BATCH_RUNNER
roles, and send a welcome email.User john.doe hasn't logged in for 90 days. Check his account status,
list his current roles, then disable the account with the reason
"Inactive account — 90 day policy".I need to audit who has the ADMIN role in iSuite. List all members
of that role and verify whether any of them also have the SCHEDULER_ADMIN
role at the same time.Job Monitoring & Control
Show me all currently running iSuite jobs. For any job that has been
running longer than 2 hours, get its full status and step details.List all failed jobs from the last 24 hours. Group them by job type
and tell me which type has the highest failure rate.Job execution JOB-20240612-0042 is stuck. Check its current status,
then cancel it gracefully with the reason "Manual intervention — stuck job".
After cancellation, retry it from the failed step.Get the full execution history for job definition ETL-DAILY-SALES
for the past 30 runs. Summarize average duration, success rate,
and identify any patterns in failures.Scheduler
Show me all scheduled jobs that are set to run in the next 6 hours.
Highlight any that overlap in timing and might cause resource contention.The end-of-month batch window starts tomorrow. Disable all non-critical
schedules (type: report) for the next 24 hours to free up resources.
List which ones you disabled.Get the scheduler engine status and list all currently disabled schedules.
Tell me which ones have been disabled longest.Batch Execution
Show me all batch jobs that are currently running. For each one,
show progress percentage and estimated completion time.Batch job BATCH-RECON-2024-0610 failed overnight. Get its full status
including step details, then rerun it from the failed step with
normal priority.Get the last 20 executions of the MONTH-END-CLOSE batch. Summarize
average runtime, any failures, and whether performance has degraded
over the last 5 runs compared to the previous 15.Audit Trail
Search the audit logs for all CONFIG_UPDATE actions performed in the
last 7 days. Show me who made changes, what was changed, and when.Pull all activity for user admin.user from the past 30 days.
Summarize the types of actions they performed and flag anything
that looks unusual (e.g. bulk deletes, after-hours logins, role changes).Export the full audit trail for June 2024 to CSV format.
Include only events related to job cancellations and batch reruns.Show me all failed login attempts in the last 48 hours.
Group by username and highlight any accounts with more than
3 failed attempts — these may need to be locked.Configuration & Health
Run a full iSuite system health check across all subsystems.
Summarize which are healthy, which have warnings, and which are failing.Validate the entire iSuite configuration in strict mode.
List all errors and warnings and suggest remediation steps.Compare the iSuite configuration between production and staging environments.
Highlight every difference and flag any production settings that look
risky if accidentally used in staging.Check the database connection health and validate the SMTP connection.
If either fails, show the full error details from the config.What is the current value of scheduler.maxConcurrentJobs?
Also list all configuration keys under the scheduler section
so I can review the full scheduler configuration.Combined / Multi-Domain
Do a daily operations check:
1. Show all currently running jobs and batches
2. List any failed jobs or batches from the last 12 hours
3. Show upcoming scheduled jobs in the next 4 hours
4. Run a system health check
Give me a summary with any action items.User sarah.jones is leaving the company today.
1. Get her current profile and role assignments
2. Revoke all her roles with reason "Employee offboarding"
3. Disable her account
4. Show her audit activity from the last 30 days for compliance recordsBefore the production deployment tonight:
1. Validate the full iSuite configuration
2. Check system health
3. List any jobs currently running that might be affected
4. Show upcoming scheduled jobs in the next 8 hours that could conflict
Summarize the go/no-go status.Troubleshooting
Server not appearing in Cline/Roo
Verify the path in
argsis correct anddist/index.jsexists afternpm run build.Check that Node.js 18+ is on your system
PATH:node --version.Use forward slashes in JSON paths on Windows.
Authentication errors (401/403)
Confirm
ISUITE_API_KEYis correct and not expired.Check
ISUITE_AUTH_TYPEmatches what your iSuite instance expects.For basic auth, ensure
ISUITE_USERNAMEandISUITE_PASSWORDare both set.
Connection timeout
Increase
ISUITE_TIMEOUT_MS(default 30000 ms).Verify
ISUITE_BASE_URLis reachable from your machine.Check firewall/VPN if iSuite is on a private network.
TLS certificate errors
If using a self-signed certificate in a dev environment, set
ISUITE_VERIFY_TLS=false.Never set this to
falsein production.
Tool returns HTTP 404
The API path may differ from the defaults. Check your iSuite API documentation and update the path in the relevant
src/tools/*.tsfile, then rebuild.
Rebuild after changes
npm run buildCline and Roo will pick up changes the next time they start the server process (usually on the next chat session or after clicking Reconnect in the MCP panel).
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/navin2031992/mcpisuite'
If you have feedback or need assistance with the MCP directory API, please join our Discord server