in-memoria

MCPCommunity
v0.6.0Piyush AiraniMITAktualisiert vor 9 Mon.npm

Persistent intelligence infrastructure for agentic development

Läuft in
ClaudeCursorCopilotGemini

Abgeleitet aus den Transporten, die dieser Eintrag deklariert (stdio). Ein Client, der hier nicht steht, ist damit nicht ausgeschlossen — Forge kann ihn nur nicht bestätigen.

Automatisch aus öffentlichen Quellen indexiert. Vom Entwickler auf Forge noch nicht verifiziert.Diesen Eintrag beanspruchen →
160Downloads/Wo.
vor 9 Mon.Letzte Aktualisierung
Liest diese Zugangsdaten
  • OPENAI_API_KEYAPI-Schlüsseloptional

    Optional OpenAI API key for embeddings (falls back to local transformers.js)

Vom Autor in der offiziellen MCP-Registry angegeben. Forge does not store, broker, or ever see these values — the config below is scaffolded with placeholders you fill in locally.

Paket
AutorPiyush Airani
LizenzMIT
Version0.6.0
Quellenpm+mcp-registry
Trust-Status
B
60/100Gut
Im Forge-Index gelistet+10/10
Publisher-Identität verifiziert+0/20
Publisher: führe `forge publish` im Repo des Pakets aus, um die Inhaberschaft zu beanspruchen
Ed25519-Publish-Signatur+0/5
Wird automatisch ergänzt, wenn der Publisher `forge publish` ausführt
Domain-Verifizierung+0/5
Publisher: hinterlege /.well-known/forge.json auf der Paket-Homepage mit { "publisher": "<github-login>" }
npm Trusted Publishing (Sigstore)+0/5
Veröffentliche aus GitHub Actions mit --provenance, damit die Attestation dieses Paket an dieses Repo bindet
npm-Maintainer-Übereinstimmung+0/5
Wird erreicht, sobald deine Identität oben verifiziert ist und dieser Login npm-Maintainer dieses Pakets ist
CVE-Scan · sauber+30/30
Statische Analyse · sauber+20/20
Füge das in Claude Code, Cursor oder einen beliebigen KI-Assistenten ein, um alle Lücken zu schließen
StatusVon der Community indexiert
PublisherNicht verifiziert
SignaturNicht signiert
Domain
Herkunft
Abhängigkeiten60 aufgelöst · 1 mit Advisories
Tool-Oberfläche14 Tools · keines privilegiert
Sicherheits-Scan⚠ Warnungen (1)v0.6.0 · heuteWie gut funktioniert dieser Scan?
EvaluierungenKeine
Indexiert28. Aug. 2026

Die Verifizierung bestätigt die Identität des Publishers (die Inhaberschaft am Repo), nicht die Sicherheit des Codes. Der Sicherheits-Scan deckt bekannte CVEs und verdächtige Installationsskripte ab.

Tools

14 Tools · keines privilegiert
Statisch aus dem veröffentlichten Paket extrahiertv0.6.0 · 5h ago

Aus dem Quellcode gelesen, den npm tatsächlich ausliefert, zum Zeitpunkt des Scans. Das Paket wurde nie ausgeführt. Tools, die zur Laufzeit dynamisch registriert werden oder in gebündeltem beziehungsweise minifiziertem Code stecken, können übersehen werden — das hier ist also eine Untergrenze der Tool-Oberfläche, keine vollständige Erhebung.

auto_learn_if_neededAutomatically learn from codebase if intelligence data is missing or stale. Call this first before using other In-Memoria tools - it's a no-op if data already exists. Includes project setup and verification. Perfect for seamless agent integration.

Automatically learn from codebase if intelligence data is missing or stale. Call this first before using other In-Memoria tools - it's a no-op if data already exists. Includes project setup and verification. Perfect for seamless agent integration.

Für dieses Tool wurde kein Eingabeschema veröffentlicht.

analyze_codebaseOne-time analysis of a specific file or directory. Returns AST structure, complexity metrics, and detected patterns for that path only. For project-wide understanding, use get_project_blueprint instead (faster, uses learned intelligence). Use this for deep-dive analysis of a specific file you're cu…

One-time analysis of a specific file or directory. Returns AST structure, complexity metrics, and detected patterns for that path only. For project-wide understanding, use get_project_blueprint instead (faster, uses learned intelligence). Use this for deep-dive analysis of a specific file you're cu…

Für dieses Tool wurde kein Eingabeschema veröffentlicht.

search_codebaseSearch for code by text matching or patterns. Use "text" type for finding specific strings/keywords in code. Use "pattern" type for regex/AST patterns. Note: For "where should I work?" or "what files to modify?" questions, use predict_coding_approach instead - it provides intelligent file routing w…

Search for code by text matching or patterns. Use "text" type for finding specific strings/keywords in code. Use "pattern" type for regex/AST patterns. Note: For "where should I work?" or "what files to modify?" questions, use predict_coding_approach instead - it provides intelligent file routing w…

Für dieses Tool wurde kein Eingabeschema veröffentlicht.

learn_codebase_intelligenceBuild intelligence database from codebase (one-time setup, ~30-60s). Required before using predict_coding_approach, get_project_blueprint, or get_pattern_recommendations. Re-run with force=true if codebase has significant changes. Most users should use auto_learn_if_needed instead - it runs this au…

Build intelligence database from codebase (one-time setup, ~30-60s). Required before using predict_coding_approach, get_project_blueprint, or get_pattern_recommendations. Re-run with force=true if codebase has significant changes. Most users should use auto_learn_if_needed instead - it runs this au…

Für dieses Tool wurde kein Eingabeschema veröffentlicht.

get_semantic_insightsSearch for code-level symbols (variables, functions, classes) by name and see their relationships, usage patterns, and evolution. Use this to find where a specific function/class is defined, how it's used, or what it depends on. Searches actual code identifiers (e.g., "DatabaseConnection", "process…

Search for code-level symbols (variables, functions, classes) by name and see their relationships, usage patterns, and evolution. Use this to find where a specific function/class is defined, how it's used, or what it depends on. Searches actual code identifiers (e.g., "DatabaseConnection", "process…

Für dieses Tool wurde kein Eingabeschema veröffentlicht.

get_pattern_recommendationsGet coding pattern recommendations learned from this codebase. Use this when implementing new features to follow existing patterns (e.g., "create a new service class", "add API endpoint"). Returns patterns like Factory, Singleton, DependencyInjection with confidence scores and actual examples from…

Get coding pattern recommendations learned from this codebase. Use this when implementing new features to follow existing patterns (e.g., "create a new service class", "add API endpoint"). Returns patterns like Factory, Singleton, DependencyInjection with confidence scores and actual examples from…

Für dieses Tool wurde kein Eingabeschema veröffentlicht.

predict_coding_approachFind which files to modify for a task using intelligent file routing. Use this when the user asks "where should I...", "what files...", or "how do I add/implement..." to route them directly to the relevant files without exploration. Returns target files, suggested starting point, and reasoning base…

Find which files to modify for a task using intelligent file routing. Use this when the user asks "where should I...", "what files...", or "how do I add/implement..." to route them directly to the relevant files without exploration. Returns target files, suggested starting point, and reasoning base…

Für dieses Tool wurde kein Eingabeschema veröffentlicht.

get_developer_profileGet patterns and conventions learned from this codebase's code style. Shows frequently-used patterns (DI, Factory, etc.), naming conventions, and architectural preferences. Use this to understand "how we do things here" before writing new code. Note: This is about the codebase's style, not individu…

Get patterns and conventions learned from this codebase's code style. Shows frequently-used patterns (DI, Factory, etc.), naming conventions, and architectural preferences. Use this to understand "how we do things here" before writing new code. Note: This is about the codebase's style, not individu…

Für dieses Tool wurde kein Eingabeschema veröffentlicht.

contribute_insightsLet AI agents save discovered insights (bug patterns, optimizations, best practices) back to In-Memoria for future reference. Use this when you discover a recurring pattern, potential bug, or refactoring opportunity that other agents/sessions should know about. Creates organizational memory across…

Let AI agents save discovered insights (bug patterns, optimizations, best practices) back to In-Memoria for future reference. Use this when you discover a recurring pattern, potential bug, or refactoring opportunity that other agents/sessions should know about. Creates organizational memory across…

Für dieses Tool wurde kein Eingabeschema veröffentlicht.

get_project_blueprintGet instant project blueprint - eliminates cold start exploration by providing tech stack, entry points, key directories, and architecture overview

Get instant project blueprint - eliminates cold start exploration by providing tech stack, entry points, key directories, and architecture overview

Für dieses Tool wurde kein Eingabeschema veröffentlicht.

get_system_statusGet comprehensive system status including intelligence data, performance metrics, and health indicators

Get comprehensive system status including intelligence data, performance metrics, and health indicators

Für dieses Tool wurde kein Eingabeschema veröffentlicht.

get_intelligence_metricsGet detailed metrics about the intelligence database and learning state

Get detailed metrics about the intelligence database and learning state

Für dieses Tool wurde kein Eingabeschema veröffentlicht.

get_performance_statusGet performance metrics including database size, query times, and resource usage

Get performance metrics including database size, query times, and resource usage

Für dieses Tool wurde kein Eingabeschema veröffentlicht.

health_checkVerify In-Memoria setup and configuration for a project. Checks database accessibility, project structure, and API keys.

Verify In-Memoria setup and configuration for a project. Checks database accessibility, project structure, and API keys.

Für dieses Tool wurde kein Eingabeschema veröffentlicht.

14 von 14 Tools haben eine Beschreibung veröffentlicht.

Tool-Namen und -Beschreibungen stammen vom Publisher und werden wortgetreu als inerter Text angezeigt. Es sind die Zeichenketten, die ein MCP-Client an ein Modell übergibt, deshalb prüft Forge sie auf Prompt-Injection-Muster — jeder Befund erscheint oben beim Sicherheits-Scan. „Privilegiert“ ist ein Schlagwort-Treffer im Tool-Namen, keine Prüfung dessen, was das Tool tut: ein harmlos klingender Name kann trotzdem alles tun.

Über

Persistent intelligence infrastructure for agentic development

Schlagwörter
mcpmcp-servermodel-context-protocolaiai-assistantcodebase-intelligencecode-analysissemantic-searchpattern-learningdeveloper-toolsclaudecopilot
Alternativen
Tool-Oberflächen werden verglichen…

Abhängigkeitsbaum

Was ein Forge-Scan am 2026-08-30 aus den npm-Metadaten aufgelöst hat — beobachtete Auflösung, keine Angabe des Herausgebers.

60 Pakete aufgelöst · 10 direkt · 1 mit Sicherheitshinweisen Die Auflösung endet bei Tiefe 4 und 60 Paketen.

Der Durchlauf endete an der Grenze von 60 Paketen. Der Rest des Baums wurde nie aufgelöst.

36 weitere aufgelöste Pakete werden hier nicht gezeichnet (Anzeigegrenze: 24). Jede Abhängigkeit mit einem Sicherheitshinweis wird unabhängig von der Grenze gezeichnet. Vollständiges Inventar (CycloneDX-SBOM)

Deklariert, aber nicht aufgelöst

73 deklarierte Abhängigkeiten sind nie im Baum gelandet. Sie fehlen in Forges Auflösung, nicht im Paket.

+61 weitere nicht aufgeführt. Die Zählungen nach Grund oben erfassen sie alle.

Nicht verfolgt: peerDependencies, optionalDependencies. Dieser Baum erfasst nur Laufzeitabhängigkeiten; was jene mitbringen, wurde nie aufgelöst.

Themen

Verwandtes in search & retrieval