Skip to content
verify mcp Beta VerifyMCP is currently in beta. If you notice any issues, email [email protected] and we’ll put it right.

com.skopik/mcp

NPM · @SKOPIKLABS/MCP · 2 COMPONENTS · SCANNED AUG 3

Your org's AI agents, tasks, runs, search, and brain files as MCP tools and resources.

+18 this week 65 Trust /100
Trust breakdown (6 categories)

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. How we score →

Supply Chain Security86
  • No malware found by supply-chain analysis.Pass
  • Only part of the dependency tree could be resolved (94 of 98), so this covers what we could see, not the whole tree.Partial
  • No install/post-install scripts declared.Pass
  • Only part of the dependency tree could be resolved (94 of 98), so this covers what we could see, not the whole tree. View diagnostics → Partial
Provenance & Transparency19
  • Repository check failed: the declared repository URL returned HTTP 404. See how to fix → View diagnostics → Fail
  • Provenance check failed: no build-provenance attestation is published. See how to fix → View diagnostics → Fail
  • Clear OSI-approved license (MIT).Pass
  • Actively maintained (last published 19 days ago).Pass
  • Security-disclosure policy not yet verified: we couldn't inspect the source repository.Unverified
Schema Quality & AI Usability84
  • 100% of prompts and resources have a non-trivial description (not blank, and not just the item's name).Pass
  • AI-judged instruction clarity (good).Pass
  • Tool/resource definitions use about 1228 tokens (~76/item across 16 items; 13 tools + 3 resources), lean.Pass
  • Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management27
  • Stability observed for 8 of 30 days with no destabilising changes; credit accrues until the full window elapses.Partial
Tool Coverage99
  • 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
  • 97% of tool parameters carry a description.Partial
  • Structured output schemas are declared (85% of tools); any adoption earns full credit.Pass
Capabilities100
  • Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass
Install

Add this component to your MCP client. Where a client-specific snippet is available, pick your client below and copy it straight into your config; otherwise use the connection detail shown.

npm · @skopiklabs/mcp

# add to Claude Code
claude mcp add com-skopik-mcp -- npx -y @skopiklabs/mcp
# add to Codex CLI
codex mcp add com-skopik-mcp -- npx -y @skopiklabs/mcp
// opencode.json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "com-skopik-mcp": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "@skopiklabs/mcp"
      ],
      "enabled": true
    }
  }
}
# add to OpenClaw
openclaw mcp add com-skopik-mcp --command npx --arg -y --arg @skopiklabs/mcp
# ~/.hermes/config.yaml
mcp_servers:
  com-skopik-mcp:
    command: "npx"
    args: ["-y", "@skopiklabs/mcp"]
// mcp.json
{
  "mcpServers": {
    "com-skopik-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "@skopiklabs/mcp"
      ]
    }
  }
}
Changelog

Every change we have recorded for this component, newest first. Security-relevant changes are always shown. ▲ marks a change for the better, ▼ a change for the worse; unmarked changes are neutral.

  • 2 Aug 26 +39
    • Provenance: unverified → fail security
    • Install scripts: unverified → pass security
    • Known CVEs: unverified → partial security
    • Malware scan: unverified → pass security
    • Dependency health: unverified → partial functional
    • Schema quality: unverified → good functional
    • Maintenance: unverified → pass functional
    • License: unverified → pass functional
    • Stability: unverified → 0.23 functional
    • Licence: MIT functional
  • 1 Aug 26 +5
    • Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window). security
    • MCP protocol: unverified → pass functional
  • 31 Jul 26 −26
    • We updated how we score, so this day's move reflects our rubric, not a change to the server See what changed → functional
  • 30 Jul 26 +29
    • Tool coverage: unverified → 100 functional
    • Schema quality: unverified → 100 functional
  • 28 Jul 26 −29
    • Tool coverage: 100 → unverified functional
    • Schema quality: 100 → unverified functional
  • 27 Jul 26 47

    First indexed and scored.

Diagnostics

Diagnostic detail from the automated scan of this channel: what the scanner observed at each step, so you can see exactly where a check passed or failed. It is informational only and never changes the trust score.

Captured 3 Aug 2026 · Analysed npm/@skopiklabs/[email protected]

Provenance none

Ecosystem: npm · Outcome: none

Dependencies 94 packages

94 packages in the resolved dependency tree · 94 deprecated · 29 stale.

The dependency tree was only partially resolved, so these counts may be incomplete.

MCP tools — 13 exposed · ~1,025 tokens

The tools this component advertises to a client, with an estimated token cost for each. Expand a tool to see its parameters and schema. The per-tool counts are indicative and are not scored directly; the schema's total context footprint is one signal in Schema Quality & AI Usability.

Tool Tokens
skopik_agent_get ~36

Fetch one agent by id, including its full configuration.

NameTypeReqDescription
agent_idstringyesAgent id (agent_...).
NameTypeReqDescription
agentobjectyes

No examples provided.

skopik_agent_message ~158

Send a chat message to a Skopik agent and wait for its reply. Starts a new DM conversation unless conversation_id (from a previous call) is given. Returns the reply when it arrives within wait_seconds; otherwise returns the run id to poll with skopik_run_get.

NameTypeReqDescription
agent_idstringyesAgent id (agent_...) to message.
conversation_idstringExisting conversation id to continue. Omit to start a new DM with the agent.
textstringyesThe message text.
thread_idstringOptional thread id to continue a specific thread.
wait_secondsnumberSeconds to wait for the reply (default 25; 0 sends without waiting).
NameTypeReqDescription
conversation_idstringyes
message_idyesId of the message that was sent.
notestring
repliesarrayyesAll agent/runtime messages observed for this run.
replyyesThe agent's reply, when it arrived in time.
run_idyesThe agent run processing the message; null if no agent was dispatched.
run_statusyes

No examples provided.

skopik_agents_list ~49

List the AI agents in the caller's Skopik org: identity, status, model, and capability fields.

NameTypeReqDescription
user_idstringOnly agents owned by this user id.
NameTypeReqDescription
agentsarrayyes

No examples provided.

skopik_api_get ~84

Escape hatch: call any read-only Skopik API endpoint under /api/v1. Prefer the skopik_* domain tools when one covers the need. Use skopik_api_describe to discover available paths.

NameTypeReqDescription
pathstringyesA Skopik API path beginning with /api/v1/.
queryobjectOptional query parameters.

No output schema declared.

No examples provided.

skopik_brain_read ~91

Read an agent's active brain snapshot (its versioned memory and identity files). Without a path: lists all files. With a path: returns that file's content.

NameTypeReqDescription
agent_idstringyesAgent id (agent_...).
pathstringBrain file path (e.g. "AGENTS.md", "memory/MEMORY.md"). Omit to list files.
NameTypeReqDescription
brain_snapshotobjectSnapshot metadata (when listing).
fileobjectFile content (when a path was given).
filesarrayFile entries (when listing).

No examples provided.

skopik_run_get ~44

Fetch one run (a single agent execution) by id: status, messages, cost, and error if any.

NameTypeReqDescription
run_idstringyesRun id.
NameTypeReqDescription
runobjectyes

No examples provided.

skopik_search ~82

Semantic + lexical search over the org's indexed files, documents, and agent brains. Returns scored text chunks.

NameTypeReqDescription
agent_idstringRestrict to one agent's content.
limitintegerMaximum results (default 10).
modestringSearch mode (default hybrid).
querystringyesThe search query.
NameTypeReqDescription
diagnosticsobject
resultsarrayyes

No examples provided.

skopik_status ~50

Return MCP server diagnostics, configured Skopik API base URL, and exposed capabilities.

NameTypeReqDescription
includeEnvironmentbooleanInclude set/unset diagnostics for supported environment variables. Secret values are never returned.

No output schema declared.

No examples provided.

skopik_task_cancel ~58

Cancel a task (and cascade to its open subtasks). Only unassigned, assigned, in_progress, or blocked tasks can be cancelled; terminal tasks are rejected.

NameTypeReqDescription
task_idstringyesTask id (task_...).
NameTypeReqDescription
taskobjectyes

No examples provided.

skopik_task_create ~149

Create a task in the caller's org, optionally assigned to an agent. Assignment normally auto-dispatches a run; set dispatch=true to force an immediate run and get its id back (requires the agents:run scope).

NameTypeReqDescription
assigned_tostringAgent id (agent_...) to assign the task to.
dispatchbooleanImmediately dispatch a run for the assigned agent.
prioritystringDefault medium.
project_idstringProject to file the task under.
promptstringyesWhat the agent should do.
tagsarray
titlestringShort display title; derived from the prompt when omitted.
NameTypeReqDescription
dispatch_errorstringSet when the task was created but the explicit dispatch failed.
runThe dispatched run, when dispatch=true succeeded.
taskobjectyes

No examples provided.

skopik_task_get ~44

Fetch one task by id, including prompt, status, assignment, and its canonical run id.

NameTypeReqDescription
task_idstringyesTask id (task_...).
NameTypeReqDescription
taskobjectyes

No examples provided.

skopik_tasks_list ~87

List tasks in the caller's org, optionally filtered by status, assigned agent, project, or parent task.

NameTypeReqDescription
agent_idstringOnly tasks assigned to this agent.
parentstringOnly subtasks of this parent task id.
project_idstringOnly tasks in this project.
statusstringOnly tasks with this status.
NameTypeReqDescription
tasksarrayyes

No examples provided.

skopik_usage_summary ~93

Aggregate usage and cost for the caller's org: total cost in USD, tokens, and call counts. Fields are camelCase.

NameTypeReqDescription
end_atnumberWindow end (Unix ms).
kindstringRestrict to one usage kind.
org_idstringOrg id; defaults to the caller's org.
start_atnumberWindow start (Unix ms).
NameTypeReqDescription
usageobjectyes

No examples provided.