iTechSmart MCP Server
OfficialThe iTechSmart MCP Server connects AI agents to iTechSmart's UAIO (Unified Autonomous IT Operations) platform, enabling cryptographically verified autonomous IT operations, incident management, compliance auditing, and integrations with enterprise tools.
ProofLink & Audit
Verify individual ProofLink cryptographic receipts, fetch and audit complete receipt chains, and search receipts
Embed and verify ProofLink receipts inside ITSM tickets
Platform Status & Monitoring
Query real-time UAIO platform health, compliance scores, and cluster status
Get full platform briefings (services, SIE queues, disk usage, uptime)
Search live systemd journal logs for any service
Incident Management (ITSM)
Create, list, retrieve, and close ITSM tickets
Run the full 6-step ITSM ProofLink loop (DETECT → TICKET → DIAGNOSE → REMEDIATE → VERIFY → CLOSE+SEAL)
Get MTTR statistics, incident timelines, and open incident lists
Register webhooks for real-time ticket state changes
Autonomous Remediation
Simulate infrastructure attacks (OOMKilled, crashloop, disk full, etc.) in a sandbox to observe autonomous response
Dispatch incidents to the AG2 6-agent GroupChat for autonomous diagnosis
List remediations with full audit trails and NIST mappings
Self-Improving Engine (SIE)
Trigger SIE scans in dry-run or apply mode
Retrieve, filter, and approve SIE security findings to apply fixes and seal receipts
Self-Healing (iSELF)
Retrieve iSELF healing journal showing diagnosed failures and applied patches
Compliance
Get live compliance scores (NIST CSF, HIPAA, SOC 2, EU AI Act)
List Probo controls, risks, and audit summaries for CISO/auditor workflows
Learning Arbiter
View and approve pending learning patterns for promotion to Agent Brain
Get Learning Arbiter cycle metrics
Integrations
Langfuse: LLM observability traces
RAGflow: Knowledge base queries
Shuffle SOAR: Trigger workflows
Tactical RMM: List agents, run scripts on managed endpoints
MeshCentral: List enrolled devices
Probo: List controls and risks
Run a parallel health check across all integrations at once
GoHighLevel CRM
Create/update contacts, trigger workflows, book appointments, send emails, and move pipeline opportunities
Audio & Media
Text-to-speech and audio transcription via Deepgram; generate MP3s from blog posts
AI Reasoning
Invoke the OctoAI 7-node cognitive pipeline for complex open-ended questions and decision support
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., "@iTechSmart MCP ServerCheck the iTechSmart platform status."
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.
This repository has moved to github.com/iTechSmartINC/mcp-server as part of the iTechSmart Inc rebrand. Please update your links and git remotes. This copy is kept as a redirect and is no longer updated.
iTechSmart MCP Server
Connect any AI agent to UAIO — Autonomous IT Operations + ProofLink™ Verification
The SaaS products that become agent-ready in 2026 win the enterprise deals.
What this does
This MCP server exposes iTechSmart's UAIO platform as tools any MCP-compatible AI agent can call — Claude, ChatGPT, Copilot, Cursor, and any other agent that speaks the Model Context Protocol.
Once connected, your AI agent can:
Verify ProofLink cryptographic receipts — confirm autonomous AI actions weren't tampered with
Query UAIO platform status — real-time health across 131 production containers
Fetch incident details — what the AI did, when, with cryptographic proof
List recent autonomous remediations — full audit trail
Simulate infrastructure attacks — trigger the break-it sandbox live
Related MCP server: Phantom MCP
Quick Start
Claude Desktop
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"itechsmart": {
"command": "npx",
"args": ["-y", "@itechsmart/mcp-server"],
"env": {
"ITECHSMART_API_KEY": "your-api-key-here"
}
}
}
}Get your API key: contact enterprise@itechsmart.dev or itechsmart.dev/contact
Remote MCP (SSE)
https://mcp.itechsmart.dev/sseFor platforms that support remote MCP servers directly (Cursor, Continue, etc.).
Tools
verify_prooflink_receipt
Verify the cryptographic integrity of a ProofLink receipt.
Agent: "Verify ProofLink receipt a1b2c3d4e5f6a7b8"
→ Returns:
{
"receipt_id": "a1b2c3d4e5f6a7b8",
"verification_result": "VERIFIED ✓",
"tamper_detected": false,
"action": "kubectl patch memory 512Mi→1024Mi + rollout restart",
"human_input": "ZERO",
"sha256": "abc123...",
"verify_url": "https://verify.itechsmart.dev/a1b2c3d4e5f6a7b8"
}get_receipt_chain
Fetch and verify the complete ProofLink receipt chain.
Agent: "Check the full UAIO audit trail for the last 20 actions"
→ Returns: complete chain with tamper detection across all receiptsquery_uaio_status
Get real-time UAIO platform health and metrics.
Agent: "What's the current status of the iTechSmart platform?"
→ Returns:
{
"status": "OPERATIONAL",
"containers": { "healthy": 131, "total": 131 },
"prooflink": { "receipts_generated": 134, "chain_breaks": 0 },
"compliance": { "nist_csf": "96/100", "hipaa": "100/100" }
}get_incident_details
Fetch full details of a specific autonomous remediation.
Agent: "Show me what UAIO did during incident inc-1746960000"
→ Returns: trigger, action taken, before/after state, ProofLink receiptlist_recent_incidents
List recent autonomous IT remediations.
Agent: "List the last 10 things UAIO fixed automatically"
→ Returns: chronological incident list with detection/remediation timessimulate_infrastructure_attack
Trigger the break-it sandbox — watch the UAIO loop live.
Agent: "Simulate a Kubernetes OOMKilled crash and show me the ProofLink receipt"
→ Returns: full 5-phase UAIO simulation with cryptographic receiptExample Agent Workflows
Compliance Audit Workflow
"Fetch the last 50 ProofLink receipts, verify chain integrity,
and generate a compliance report for our SOC 2 audit."
→ Agent calls get_receipt_chain(limit=50)
→ Verifies all 50 receipts
→ Reports: chain_valid, any tamper positions, NIST control coverageIncident Investigation Workflow
"What did the AI fix last night between 2-4AM and can you prove it?"
→ Agent calls list_recent_incidents(since="2026-05-11T02:00:00Z")
→ Agent calls get_incident_details for each incident
→ Agent calls verify_prooflink_receipt for each receipt
→ Returns: complete verified audit trailMonitoring Workflow
"Check if the iTechSmart platform is healthy before we run our demo."
→ Agent calls query_uaio_status()
→ Returns: operational status, container health, compliance scoresEnvironment Variables
Variable | Required | Description |
| Yes | API key — contact enterprise@itechsmart.dev or itechsmart.dev/contact |
| No | Custom API URL (default: https://app.itechsmart.dev/api/v1) |
Development
git clone https://github.com/Iteksmart/mcp-server
cd mcp-server
npm install
npm run build
npm startLinks
Platform: itechsmart.dev
Live demo: itechsmart.dev/break-it
Verify receipts: verify.itechsmart.dev
Open-source verifier: github.com/Iteksmart/prooflink-verifier
API docs: docs.itechsmart.dev
About iTechSmart
iTechSmart builds UAIO — Unified Autonomous IT Operations. The first platform that autonomously detects, remediates, and cryptographically proves every infrastructure action.
SDVOSB · CAGE: 172W2 · NVIDIA Inception · F6S #6 Global · NIST CSF 96/100
MIT License — iTechSmart Inc. 2026
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityCmaintenanceEnables AI agents to sign decisions with post-quantum cryptographic proofs and maintain secure audit trails for compliance. It provides tools for stamping events, verifying chain integrity, and exporting audit data across industries like finance and healthcare.457MIT
- Flicense-qualityDmaintenanceEnables authorized compliance verification and security auditing through natural language, bridging AI assistants with industry-standard security tools for enterprise audits.24
- AlicenseBqualityBmaintenanceConnects AI agents to the UAIO platform for autonomous IT operations and ProofLink cryptographic verification, enabling tasks like querying platform status, verifying receipts, and simulating attacks.6691MIT
- FlicenseCqualityBmaintenanceEnables AI assistants to autonomously perform site reliability engineering including monitoring, root-cause analysis, impact assessment, and remediation with cryptographic zero-trust enforcement.20
Related MCP Connectors
Bitcoin-anchored, tamper-evident audit log for AI agents — record, disclose and verify actions.
Pre-action attestation perimeter for AI agents — 8 primitives, signed C18 receipt per call.
Issue signed receipts for AI agent actions; verify any receipt offline - free, no account.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/Iteksmart/mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server