MCP server intelligence profile

Smart Coding MCP Server

Provides intelligent semantic code search using local AI embeddings, enabling natural language queries to find relevant code by meaning rather than exact keywords. Indexes codebases in the background with smart project detection and privacy-first local processing

Local Onlyomar-haris
Awaiting current scanNpm · 2.3.3

The selected current version does not yet have completed public verification. Unknown does not mean clean or vulnerable.

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

Detailed security scan evidence is not public for this MCP yet. Public identity, registry metadata, and independently observed protocol inventory remain available.

Install and connect

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

Install smart-coding-mcp from npm

Version 2.3.3 declares 1 executable entrypoint.

npm install --save-exact smart-coding-mcp@2.3.3
npx -y -p smart-coding-mcp@2.3.3 smart-coding-mcp
MCP client configuration example
{
  "mcpServers": {
    "smart-coding-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "-p",
        "smart-coding-mcp@2.3.3",
        "smart-coding-mcp"
      ]
    }
  }
}

Identity

Canonical slugsmart-coding-mcp-982a9821DeploymentLocal Only
Canonical packagenpm:smart-coding-mcpRepositoryomar-haris/smart-coding-mcp
First publishedLatest release
Last security verificationClassification confidence90%
PublicationDraftOfficial distributionNot verified

Distributions

ChannelIdentifierCurrent versionVersionsSource
npmsmart-coding-mcp2.3.319Repository

Current release

PackageVersionPublished / observedInventorySecurity scan
npmsmart-coding-mcp2.3.3CurrentSep 5, 20266 toolsSucceeded · 0 resources · 0 promptsEvidence restricted
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

No public current-version evidence is available yet.

Current protocol inventory

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

Tools 6

ToolCategoryAnnotationsRisk
a_semantic_searchPerforms intelligent hybrid code search combining semantic understanding with exact text matching. Ideal for finding code by meaning (e.g., 'authentication logic', 'database queries') even with typos or variations. Returns the most relevant code snippets with file locations and line numbers.
Input schema
{
  "type": "object",
  "properties": {
    "query": {
      "type": "string",
      "description": "Search query - can be natural language (e.g., 'where do we handle user login') or specific terms"
    },
    "maxResults": {
      "type": "number",
      "description": "Maximum number of results to return (default: from config)",
      "default": 5
    }
  },
  "required": [
    "query"
  ]
}
Annotations
{
  "title": "Semantic Code Search",
  "readOnlyHint": true,
  "destructiveHint": false,
  "idempotentHint": true,
  "openWorldHint": false
}
Read onlyNon-destructiveIdempotentClosed world
b_index_codebaseManually trigger a full reindex of the codebase. This will scan all files and update the embeddings cache. Useful after large code changes or if the index seems out of date.
Input schema
{
  "type": "object",
  "properties": {
    "force": {
      "type": "boolean",
      "description": "Force reindex even if files haven't changed",
      "default": false
    }
  }
}
Annotations
{
  "title": "Reindex Codebase",
  "readOnlyHint": false,
  "destructiveHint": false,
  "idempotentHint": true,
  "openWorldHint": false
}
WritesNon-destructiveIdempotentClosed world
c_clear_cacheClears the embeddings cache, forcing a complete reindex on next search or manual index operation. Useful when encountering cache corruption or after major codebase changes.
Input schema
{
  "type": "object",
  "properties": {}
}
Annotations
{
  "title": "Clear Embeddings Cache",
  "readOnlyHint": false,
  "destructiveHint": true,
  "idempotentHint": true,
  "openWorldHint": false
}
WritesDestructiveIdempotentClosed world
d_check_last_versionGet the latest version of a library/package from its official registry. Supported ecosystems: npm (JS/TS), PyPI (Python), Packagist (PHP), Crates.io (Rust), Maven (Java/Kotlin), Go, RubyGems, NuGet (.NET), Hex (Elixir), CRAN (R), CPAN (Perl), pub.dev (Dart), Homebrew (macOS), Conda (Python/R), Clojars (Clojure), Hackage (Haskell), Julia, Swift PM, Chocolatey (Windows). Returns the version string to help you avoid using outdated dependencies.
Input schema
{
  "type": "object",
  "properties": {
    "package": {
      "type": "string",
      "description": "Package name (e.g., 'express', 'requests', 'flutter', 'brew:wget', 'conda:numpy', 'swift:apple/swift-nio'). Use prefixes for explicit ecosystem detection."
    },
    "ecosystem": {
      "type": "string",
      "enum": [
        "npm",
        "pypi",
        "packagist",
        "crates",
        "maven",
        "go",
        "rubygems",
        "nuget",
        "cocoapods",
        "hex",
        "cran",
        "cpan",
        "pub",
        "homebrew",
        "conda",
        "clojars",
        "hackage",
        "julia",
        "swift",
        "chocolatey"
      ],
      "description": "Package ecosystem (optional - auto-detected from prefix)"
    }
  },
  "required": [
    "package"
  ]
}
Annotations
{
  "title": "Check Latest Package Version",
  "readOnlyHint": true,
  "idempotentHint": true
}
Read onlyIdempotent
e_set_workspaceChange the project workspace path at runtime. Use this when you detect the current workspace is incorrect or you need to switch to a different project directory. Creates cache folder automatically and optionally re-indexes the new workspace.
Input schema
{
  "type": "object",
  "properties": {
    "path": {
      "type": "string",
      "description": "Absolute path to the new workspace directory"
    },
    "clearCache": {
      "type": "boolean",
      "description": "Whether to clear existing cache before switching (default: false)"
    },
    "reindex": {
      "type": "boolean",
      "description": "Whether to trigger re-indexing after switching (default: true)"
    }
  },
  "required": [
    "path"
  ]
}
f_get_statusGet comprehensive status information about the Smart Coding MCP server. Returns version, workspace path, model configuration, indexing status, and cache information. Useful for understanding the current state of the semantic search system.
Input schema
{
  "type": "object",
  "properties": {},
  "required": []
}

Resources 0

  • None observed.

Resource templates 0

  • None observed.

Prompts 0

  • None observed.

Remote endpoints

EndpointTransportAuthenticationHealthObserved
No verified remote endpoint is linked.

Smart Coding MCP Server questions

How do I install Smart Coding MCP Server?

Install the selected package version with: npm install --save-exact smart-coding-mcp@2.3.3

What tools does Smart Coding MCP Server provide?

Smart Coding MCP Server exposed 6 tools during independent protocol observation, including a_semantic_search, b_index_codebase, c_clear_cache, d_check_last_version, e_set_workspace, f_get_status.

Is Smart Coding MCP Server secure?

The selected current version does not yet have completed public verification. Unknown does not mean clean or vulnerable.

Explore related MCP server guides

Curated product and capability guides containing this catalog record.

Developer Tool MCP ServersOfficial vs Community MCP Servers

Let’s talk about MCP security.

Share your details and our security team will contact you.