MCP server intelligence profile

infimium MCP Server

Infimium is an MCP server that gives AI agents persistent memory, deep dependency graphs, and instant code context for repositories. It provides tools like semantic code search, symbol expansion, and local docs retrieval to minimize token bloat while working with large codebases

Local OnlyOfficial distributioninfimium-ai
Verified cleanNpm · 0.5.9

Our scanner tested version 0.5.9 without proving a finding in the methods exercised. This is not a guarantee that every deployment is secure.

1Distribution channel
11Independently observed tools
0Linked remote endpoints
AvailableVersion intelligence

Install and connect

Installation and connection instructions are shown only when supported by retained package, repository, or endpoint evidence.

Install infimium from npm

Version 0.5.9 declares 1 executable entrypoint.

npm install --save-exact infimium@0.5.9
npx -y -p infimium@0.5.9 infimium
MCP client configuration example
{
  "mcpServers": {
    "infimium": {
      "command": "npx",
      "args": [
        "-y",
        "-p",
        "infimium@0.5.9",
        "infimium"
      ]
    }
  }
}

Identity

Canonical sluginfimium-9b92b1f2DeploymentLocal Only
Canonical packagenpm:infimiumRepositoryinfimium-ai/infimium-agent
First publishedLatest release
Last security verificationAug 19, 2026Classification confidence90%
PublicationPublishedOfficial distributionYes

Distributions

ChannelIdentifierCurrent versionVersionsSource
npminfimium0.5.927Repository

Current release

PackageVersionPublished / observedInventorySecurity scan
npminfimium0.5.9CurrentSep 5, 202611 toolsSucceeded · 0 resources · 0 promptsFailed
Enterprise protection

Continuously monitor this MCP for security risk

Independently scan the exact version your agents use, receive alerts when its risk changes, and investigate every finding with retained version evidence.

  • Independent exact-version security scans
  • Continuous release and vulnerability monitoring
  • Risk-change alerts with capability context
  • Historical evidence and API exports
Custom pricingContact salesTailored to your organization, integrations, data needs, and support requirements.

Current version evidence

Provenanceartifact_hash_verifiedSignature
MCP SDK@modelcontextprotocol/sdk Artifact SHA-2560f31b0e73f9bb7d0280f11894bca2bb3ae7e5c3a7560ab43f04e5a999735c2ca
Scannermcp-proof-engine 0.1.0Scan completedAug 20, 2026
Security rating32 / 100Methodologyversion-rating-1.0
Executable entrypoints
[
  "infimium"
]
Rating reasons
[
  "security_policy_not_observed"
]

Current protocol inventory

2025-06-18Negotiated protocol
infimiumServer-reported name
1Capability groups
Aug 15, 2026Observed

Tools 11

ToolCategoryAnnotationsRisk
dep_graphInspect dependency relationships for a symbol.
Input schema
{
  "type": "object",
  "properties": {
    "symbol_name": {
      "type": "string"
    },
    "project_path": {
      "type": "string"
    }
  },
  "required": [
    "symbol_name"
  ],
  "additionalProperties": false
}
expand_symbolLoad the full implementation of one symbol returned by semantic_code_search.
Input schema
{
  "type": "object",
  "properties": {
    "symbol_name": {
      "type": "string"
    },
    "file_path": {
      "type": "string"
    },
    "project_path": {
      "type": "string"
    }
  },
  "required": [
    "symbol_name"
  ],
  "additionalProperties": false
}
fetch_urlFetch a URL and extract readable content.
Input schema
{
  "type": "object",
  "properties": {
    "url": {
      "type": "string"
    },
    "extract": {
      "type": "string",
      "enum": [
        "text",
        "markdown"
      ],
      "default": "markdown"
    }
  },
  "required": [
    "url"
  ],
  "additionalProperties": false
}
get_contextRead the balanced YAML context layer with repo overview, Git state, task, memory, and AST-first handoff guidance. Pass project_path once to activate the current IDE workspace as the default.
Input schema
{
  "type": "object",
  "properties": {
    "refresh": {
      "type": "boolean",
      "default": true
    },
    "limit": {
      "type": "number",
      "default": 8
    },
    "format": {
      "type": "string",
      "enum": [
        "yaml",
        "json"
      ],
      "default": "yaml"
    },
    "project_path": {
      "type": "string"
    }
  },
  "additionalProperties": false
}
hello_infimiumHealth probe for the Infimium MCP server.
Input schema
{
  "type": "object",
  "properties": {},
  "additionalProperties": false
}
planGenerate a grounded implementation plan for the current repository.
Input schema
{
  "type": "object",
  "properties": {
    "task": {
      "type": "string"
    },
    "dry_run": {
      "type": "boolean",
      "default": false
    },
    "write_plan": {
      "type": "boolean",
      "default": false
    },
    "output_path": {
      "type": "string",
      "default": "plan.md"
    },
    "top_k": {
      "type": "number",
      "default": 5
    },
    "language": {
      "type": "string"
    },
    "project_path": {
      "type": "string"
    }
  },
  "required": [
    "task"
  ],
  "additionalProperties": false
}
project_memoryManage compact project memory across chats, agents, and IDEs: remember active work, complete and archive sessions, search history, or update durable rules.
Input schema
{
  "type": "object",
  "properties": {
    "action": {
      "type": "string",
      "enum": [
        "resume",
        "remember",
        "complete",
        "search",
        "ledger",
        "supersede"
      ],
      "default": "resume"
    },
    "note": {
      "type": "string"
    },
    "task": {
      "type": "string"
    },
    "event_type": {
      "type": "string",
      "enum": [
        "note",
        "progress",
        "decision",
        "blocker",
        "index",
        "plan"
      ],
      "default": "note"
    },
    "limit": {
      "type": "number",
      "default": 8
    },
    "project_path": {
      "type": "string"
    },
    "query": {
      "type": "string"
    },
    "key": {
      "type": "string"
    },
    "value": {
      "type": "string"
    },
    "category": {
      "type": "string",
      "enum": [
        "decision",
        "rule",
        "quirk",
        "blocker"
      ]
    },
    "use_model": {
      "type": "boolean",
      "default": true
    }
  },
  "additionalProperties": false
}
query_local_docsQuery indexed local documentation.
Input schema
{
  "type": "object",
  "properties": {
    "query": {
      "type": "string"
    },
    "top_k": {
      "type": "number",
      "default": 5
    },
    "project_path": {
      "type": "string"
    }
  },
  "required": [
    "query"
  ],
  "additionalProperties": false
}
semantic_code_searchSearch code semantically and return compact symbol signatures.
Input schema
{
  "type": "object",
  "properties": {
    "query": {
      "type": "string"
    },
    "language": {
      "type": "string"
    },
    "top_k": {
      "type": "number",
      "default": 5
    },
    "project_path": {
      "type": "string"
    }
  },
  "required": [
    "query"
  ],
  "additionalProperties": false
}
shellRun an allowlisted shell command.
Input schema
{
  "type": "object",
  "properties": {
    "command": {
      "type": "string"
    },
    "cwd": {
      "type": "string"
    },
    "timeout": {
      "type": "number",
      "default": 30
    }
  },
  "required": [
    "command"
  ],
  "additionalProperties": false
}
web_searchSearch the web for current information.
Input schema
{
  "type": "object",
  "properties": {
    "query": {
      "type": "string"
    },
    "max_results": {
      "type": "number",
      "default": 5
    }
  },
  "required": [
    "query"
  ],
  "additionalProperties": false
}

Resources 0

  • None observed.

Resource templates 0

  • None observed.

Prompts 0

  • None observed.

Remote endpoints

EndpointTransportAuthenticationHealthObserved
No verified remote endpoint is linked.

infimium MCP Server questions

How do I install infimium MCP Server?

Install the selected package version with: npm install --save-exact infimium@0.5.9

What tools does infimium MCP Server provide?

infimium MCP Server exposed 11 tools during independent protocol observation, including dep_graph, expand_symbol, fetch_url, get_context, hello_infimium, plan, project_memory, query_local_docs, and others.

Is infimium MCP Server secure?

Our scanner tested version 0.5.9 without proving a finding in the methods exercised. This is not a guarantee that every deployment is secure.

Explore related MCP server guides

Curated product and capability guides containing this catalog record.

Official vs Community MCP ServersMCP Servers With Completed Verification

Let’s talk about MCP security.

Share your details and our security team will contact you.