RAG MCP Server
The RAG MCP Server is a Model Context Protocol server that combines knowledge graphs with Retrieval-Augmented Generation for intelligent code indexing, semantic search, and project management.
Core Capabilities:
Automated RAG Pipeline - Complete project analysis and injection into both knowledge graph (Phase 0) and RAG system with automatic LLM-powered intelligent analysis
Knowledge Graph Management - Create, read, update, and delete entities, relations, and observations with automatic knowledge enrichment during indexing
Semantic Code Search - Advanced semantic searches across indexed codebases with configurable similarity thresholds and project filtering
Incremental Updates - Re-index projects with configurable chunking and embeddings without full reprocessing
Project Management - List and view statistics for indexed projects
Advanced Features:
Intelligent LLM Analysis - Leverage Ollama for content summarization, keyword extraction, structure suggestion, entity detection, and complexity classification
Optimized Performance - Batch processing for LLM calls with intelligent caching (configurable TTL) for improved efficiency
Centralized Configuration - Unified configuration system (
rag-config.json) with validation, limits, and support for multiple embedding providers (fake, ollama, sentence-transformers) and LLM providersFlexible File Filtering - Exclude files from indexing using
.ragignorepatterns and customizable file patternsExtensible Architecture - Tool Registry system for automatic discovery, centralized management, and unified execution with backward compatibility
MCP Integration - Works with Model Context Protocol clients like Cline through standardized configuration
Supports Ollama as an embedding provider for semantic search and code indexing, allowing the use of models like nomic-embed-text for RAG functionality.
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., "@RAG MCP Serversearch for authentication middleware in our user service project"
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.
RAG MCP Server v2.0
Un serveur MCP (Model Context Protocol) avec architecture v2.0 simplifiée : 2 outils principaux pour l'indexation automatique et la recherche sémantique de code.
🚀 Nouvelle Architecture v2.0
📋 Outils Principaux (Simplifiés)
Outil | Description | Remplace |
| Outil maître pour l'indexation automatique |
|
| Outil de recherche avancée |
|
🎯 Avantages de v2.0
Simplification radicale : 2 outils au lieu de 6
Automatisation complète : Détection VS Code + file watcher intégrés
Intelligence native : Chunking intelligent par type de contenu
Rétrocompatibilité totale : Les anciens outils fonctionnent toujours (masqués)
Pipeline automatisé : Phase 0 → scan → analyse → chunking → embeddings → injection
Related MCP server: Code Graph Knowledge System
🏗️ Architecture Technique
Pipeline activated_rag
activated_rag
├── Phase 0 : Détection projet VS Code
├── Scan fichiers & changements
├── Analyse statique multi-langage
├── Chunking intelligent
│ ├── Code : 1 fonction = 1 chunk
│ ├── Classes : N chunks
│ └── Documentation : par paragraphes
├── Calcul embeddings
│ ├── Code : nomic-embed-code
│ └── Texte : nomic-embed-text
└── Injection RAGFonctionnalités recherche_rag
Recherche hybride : Combinaison similarité sémantique + recherche textuelle
Filtres avancés : Par type de contenu, langage, extension, score
Re-ranking : Classement basé sur métadonnées (fraîcheur, taille, type)
Seuil dynamique : Adaptation automatique du seuil de similarité
📦 Installation
# Cloner le dépôt
git clone <repository-url>
cd rag-mcp-server
# Installer les dépendances
npm install
# Construire le projet
npm run build🚀 Utilisation Rapide
Indexation Automatique
// Utilisation simple avec activated_rag
const result = await toolRegistry.execute('activated_rag', {
project_path: '/chemin/vers/mon/projet',
enable_phase0: true // Détection automatique VS Code
});Recherche Avancée
// Recherche avec filtres
const results = await toolRegistry.execute('recherche_rag', {
query: 'comment implémenter l\'authentification',
scope: 'project',
top_k: 5,
filters: {
content_type: ['code', 'doc'],
language: ['typescript', 'javascript']
}
});🔧 Configuration v2.0
Configuration Principale
{
"version": "2.0.0",
"description": "Configuration RAG v2.0",
"system": {
"legacy_mode": true,
"exposed_tools": ["activated_rag", "recherche_rag"],
"legacy_tools": ["injection_rag", "index_project", "update_project", "search_code", "manage_projects"]
},
"defaults": {
"embedding_provider": "ollama",
"embedding_model": "nomic-embed-text",
"chunk_size": 1000,
"chunk_overlap": 200
},
"providers": {
"ollama": {
"description": "Ollama embeddings",
"models": {
"code": "nomic-embed-code",
"text": "nomic-embed-text"
}
}
}
}Migration depuis v1.0
# Migration automatique
npm run migrate-v2
# Vérification
npm run test-retrocompatibility🧪 Tests
Tests v2.0
# Tests de rétrocompatibilité
npm run test:retrocompatibility
# Tests de performance
npm run test:performance
# Tous les tests
npm testTests Spécifiques
Tests de migration : Vérification de la rétrocompatibilité
Tests de performance : Benchmark nouveau vs ancien système
Tests d'intégration : Validation du pipeline complet
Tests de qualité : Validation des embeddings séparés
🛠️ Structure du Projet v2.0
rag-mcp-server/
├── src/
│ ├── config/
│ │ └── rag-config.ts # Gestionnaire de configuration v2.0
│ ├── core/
│ │ ├── tool-registry.ts # Système central d'enregistrement
│ │ ├── registry.ts # Enregistrement automatique v1.0
│ │ └── registry-v2.ts # Enregistrement automatique v2.0
│ ├── tools/
│ │ ├── graph/ # Outils de graphe de connaissances (9 outils)
│ │ └── rag/ # Outils RAG v2.0
│ │ ├── activated-rag.ts # Outil maître v2.0
│ │ ├── recherche-rag.ts # Recherche avancée v2.0
│ │ └── legacy/ # Outils legacy (masqués)
│ │ ├── injection-rag.ts
│ │ ├── index-project.ts
│ │ ├── update-project.ts
│ │ ├── search-code.ts
│ │ └── manage-projects.ts
│ ├── rag/ # Composants RAG avancés
│ │ ├── indexer.ts # Indexation avec chunking intelligent
│ │ ├── searcher.ts # Recherche sémantique avancée
│ │ ├── vector-store.ts # Stockage vectoriel v2.0
│ │ ├── vector-store-refactored.ts # Refactorisation embeddings par type
│ │ ├── phase0/ # Phase 0 : Détection automatique
│ │ │ ├── workspace-detector.ts
│ │ │ ├── file-watcher.ts
│ │ │ ├── event-logger.ts
│ │ │ ├── chunker-integration.ts
│ │ │ └── llm-enrichment/ # Enrichissement LLM
│ │ └── ai-segmenter.ts # Segmentation intelligente
│ └── index.ts # Point d'entrée principal
├── config/
│ ├── rag-config.json # Configuration v1.0 (rétrocompatible)
│ └── rag-config-v2.json # Configuration v2.0
├── docs/
│ ├── CONFIGURATION.md # Guide de configuration
│ ├── PHASE0_3_README.md # Documentation Phase 0
│ └── API_REFERENCE.md # Référence API
├── test/
│ ├── retrocompatibility-v2.test.ts # Tests rétrocompatibilité
│ └── phase0-llm-enrichment/ # Tests Phase 0
├── scripts/
│ ├── migrate-config-v2.js # Migration v1.0 → v2.0
│ └── migrate-rag-store.js # Migration données
└── package.json📊 Métriques v2.0
Outils Visibles
2 outils principaux :
activated_rag,recherche_rag9 outils graph : Graphe de connaissances (inchangés)
Total visible : 11 outils
Outils Masqués (Rétrocompatibilité)
5 outils legacy :
injection_rag,index_project,update_project,search_code,manage_projectsAccessibles : Via appel direct (rétrocompatibilité)
Performances
Initialisation : < 500ms
Indexation : 30-50% plus rapide avec chunking intelligent
Recherche : 20-40% plus précise avec embeddings séparés
Mémoire : Réduction de 25% avec cache optimisé
🔍 Dépannage
Problèmes Courants
Q : Les anciens outils ne fonctionnent plus ?
R : Activez legacy_mode: true dans la configuration.
Q : activated_rag ne détecte pas les changements ?
R : Vérifiez enable_phase0: true et les permissions du file watcher.
Q : Recherche avec scores bas ?
R : Ajustez filters.min_score ou utilisez le modèle approprié pour le type de contenu.
Q : Performances lentes ?
R : Réduisez chunk_size, utilisez embedding_provider: 'fake' pour les tests, désactivez enable_watcher.
📈 Monitoring
Logs Disponibles
logs/activated-rag.log: Indexation automatiquelogs/recherche-rag.log: Recherches avancéeslogs/phase0-events.log: Événements Phase 0logs/performance.log: Métriques de performance
Métriques Clés
const metrics = {
indexation: {
files_processed: number,
chunks_created: number,
embedding_time_ms: number,
total_time_ms: number
},
recherche: {
query_time_ms: number,
results_count: number,
avg_score: number,
cache_hit_rate: number
},
phase0: {
files_watched: number,
change_events: number,
auto_index_count: number
}
};🔮 Roadmap
v2.1 (Prochainement)
Intégration Tree-sitter : Analyse AST native
Cache distribué : Partage d'embeddings entre projets
API REST : Interface HTTP pour les outils
Plugins : Extensions personnalisables
v3.0 (Future)
Apprentissage automatique : Adaptation des paramètres
Collaboration : Partage d'index entre utilisateurs
Intégration CI/CD : Pipeline d'indexation automatisé
Dashboard : Interface web de monitoring
📚 Documentation Complète
GUIDE-NOUVEAUX-OUTILS-V2.md : Guide détaillé v2.0
CONFIGURATION.md : Guide de configuration
PHASE0_3_README.md : Documentation Phase 0
API_REFERENCE.md : Référence API
🤝 Contribution
Fork le projet
Créer une branche (
git checkout -b feature/amazing-feature)Commit les changements (
git commit -m 'Add amazing feature')Push vers la branche (
git push origin feature/amazing-feature)Ouvrir une Pull Request
📄 Licence
Ce projet est sous licence MIT. Voir le fichier LICENSE pour plus de détails.
🙏 Remerciements
Model Context Protocol pour le framework MCP
L'équipe de développement pour les contributions
La communauté open source pour les outils et bibliothèques utilisés
Dernière mise à jour : 13/01/2026
Version : 2.0.0
Statut : Production Ready avec Architecture Simplifiée 🚀
Compatibilité : Rétrocompatible avec v1.0.0
Changelog v2.0.0
Nouveau : Architecture simplifiée avec 2 outils principaux
Nouveau :
activated_rag- Outil maître pour indexation automatiqueNouveau :
recherche_rag- Recherche avancée avec filtresNouveau : Phase 0 intégrée (détection VS Code + file watcher)
Nouveau : Chunking intelligent par type de contenu
Nouveau : Embeddings séparés (code vs texte)
Nouveau : Système de registre v2.0 avec outils masqués
Nouveau : Tests de rétrocompatibilité complets
Nouveau : Scripts de migration v1.0 → v2.0
Nouveau : Documentation v2.0 complète
Amélioration : Performances 30-50% plus rapides
Amélioration : Précision de recherche 20-40% meilleure
Amélioration : Réduction mémoire de 25%
Rétrocompatibilité : Tous les outils v1.0 fonctionnent (masqués)
Changelog v1.5.0
Nouveau : Analyse LLM intelligente avec intégration Ollama
Nouveau : Service LLM (
LlmService) pour appels à l'API OllamaNouveau : Cache LLM (
LlmCache) pour optimisation des performancesNouveau : Configuration LLM dans
rag-config.jsonavec fournisseurs et préparationNouveau : Tâches intelligentes : résumé, extraction de mots-clés, suggestion de structure, détection d'entités, classification de complexité
Nouveau : Intégration dans
ai-segmenter.tspour segmentation intelligenteNouveau : Intégration dans
indexer.tsavec cache LLMNouveau : Tests de configuration LLM (
test-llm-config.js)Nouveau : Tests d'intégration Ollama (
test-ollama-integration.js)Amélioration : Support de multiples modèles Ollama configurables
Amélioration : Batch processing pour optimisation des appels LLM
Amélioration : Cache intelligent avec TTL configurable
Amélioration : Documentation complète des fonctionnalités LLM
Available Tools
13 toolsadd_observationsC
Add new observations to existing entities in the knowledge graph
| Name | Required | Description | Default |
|---|---|---|---|
| observations | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It states the tool adds observations to existing entities, implying a mutation operation, but lacks details on permissions, side effects (e.g., if duplicates are allowed), error handling, or response format. This is inadequate for a mutation tool with zero annotation coverage.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that directly states the tool's purpose without unnecessary words. It's front-loaded and appropriately sized, making it easy to parse quickly.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (a mutation operation with nested parameters), lack of annotations, and no output schema, the description is incomplete. It fails to address critical aspects like behavioral traits, error conditions, or return values, making it insufficient for safe and effective use by an AI agent.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, but the description mentions 'observations' and 'existing entities,' which aligns with the input schema's 'observations' array containing 'entityName' and 'contents.' However, it doesn't add meaningful semantics beyond this basic mapping, such as format constraints or examples, leaving parameters partially documented.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Add new observations') and target ('to existing entities in the knowledge graph'), which is specific and unambiguous. However, it doesn't explicitly differentiate from sibling tools like 'create_entities' or 'delete_observations' beyond the implied distinction between adding to existing entities versus creating new ones.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It doesn't mention prerequisites (e.g., entities must exist), exclusions, or comparisons to siblings like 'create_entities' for new entities or 'delete_observations' for removal, leaving usage context unclear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
create_entitiesC
Create multiple new entities in the knowledge graph
| Name | Required | Description | Default |
|---|---|---|---|
| entities | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It states this is a creation operation, implying mutation, but doesn't cover critical aspects like permissions needed, whether creation is idempotent, error handling for duplicates, or rate limits. For a batch creation tool with zero annotation coverage, this leaves significant gaps in understanding its behavior.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that directly states the tool's function without unnecessary words. It's front-loaded with the core action ('create multiple new entities') and specifies the context ('in the knowledge graph'), making it easy to parse quickly. Every word earns its place, with no redundancy or fluff.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the complexity of batch creation in a knowledge graph, no annotations, and no output schema, the description is insufficient. It doesn't address return values, error conditions, or interactions with sibling tools like 'read_graph' or 'delete_entities'. For a mutation tool with multiple parameters and siblings, more context is needed to ensure proper usage.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, meaning the schema provides no descriptions for parameters. The description mentions 'multiple new entities' but doesn't explain what 'entities' entail beyond the schema's structure. It fails to add meaningful context about the 'entities' array, such as format examples, constraints on entity types, or how observations are used, leaving parameters largely undocumented.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb ('create') and resource ('multiple new entities in the knowledge graph'), making the purpose unambiguous. It distinguishes from siblings like 'create_relations' or 'add_observations' by focusing on entity creation rather than relationships or observations. However, it doesn't specify what constitutes an 'entity' beyond the schema, leaving some ambiguity.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It doesn't mention prerequisites, such as whether entities must be unique or if there are limits on batch size. With siblings like 'create_relations' and 'add_observations', there's no indication of how this tool interacts with them or when to choose one over another.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
create_relationsC
Create multiple new relations between entities in the knowledge graph. Relations should be in active voice
| Name | Required | Description | Default |
|---|---|---|---|
| relations | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It states this is a creation operation, implying mutation, but doesn't disclose critical traits like required permissions, whether it's idempotent, error handling, or rate limits. The active voice hint adds minor context but doesn't compensate for the lack of behavioral details, making it inadequate for a mutation tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is extremely concise with two sentences that directly state the tool's function and a stylistic requirement. Every word earns its place, and it's front-loaded with the core purpose. There's no redundancy or unnecessary elaboration, making it efficient and well-structured.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the complexity (a mutation tool creating relations in a knowledge graph), lack of annotations, no output schema, and 0% schema description coverage, the description is incomplete. It doesn't explain return values, error cases, or behavioral nuances, leaving the agent under-informed. The active voice hint is insufficient to cover these gaps, making it inadequate for safe and effective use.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the schema provides no parameter descriptions. The description adds minimal semantics by implying 'relations' is an array of objects with 'from,' 'to,' and 'relationType,' but doesn't explain what these mean beyond the schema's structure. It doesn't clarify data formats, constraints, or examples, leaving significant gaps. Baseline 3 is appropriate as it adds some value but doesn't fully compensate for the 0% coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb ('create') and resource ('multiple new relations between entities in the knowledge graph'), making the purpose understandable. It distinguishes from siblings like 'create_entities' (which creates entities, not relations) and 'delete_relations' (which removes relations). However, it doesn't explicitly differentiate from all siblings (e.g., 'add_observations' might be similar in some contexts), so it's not a perfect 5.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It mentions 'relations should be in active voice,' which is a stylistic hint but not a usage guideline. There's no mention of prerequisites, when not to use it, or comparisons to siblings like 'create_entities' or 'delete_relations,' leaving the agent with minimal context for selection.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
delete_entitiesC
Delete multiple entities and their associated relations from the knowledge graph
| Name | Required | Description | Default |
|---|---|---|---|
| entityNames | Yes | An array of entity names to delete |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden for behavioral disclosure. While it correctly indicates this is a destructive operation ('Delete'), it doesn't address critical behavioral aspects like whether deletions are permanent/reversible, what happens to orphaned data, permission requirements, rate limits, or error handling for invalid entity names.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that directly states the tool's purpose with zero wasted words. It's appropriately sized for a tool with one parameter and gets straight to the point without unnecessary elaboration.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a destructive tool with no annotations and no output schema, the description is insufficient. It doesn't explain what 'associated relations' means operationally, what confirmation or validation occurs, what the return value or success indicators are, or how errors are handled - critical gaps for a deletion operation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, with the single parameter 'entityNames' well-documented in the schema. The description adds no additional parameter semantics beyond what the schema already provides about the array of entity names to delete, meeting the baseline for high schema coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Delete') and target resources ('multiple entities and their associated relations from the knowledge graph'), providing a specific verb+resource combination. However, it doesn't explicitly distinguish this tool from sibling tools like 'delete_observations' or 'delete_relations', which handle different resource types in the same system.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives like 'delete_observations' or 'delete_relations', nor does it mention prerequisites, constraints, or appropriate contexts for invocation. It simply states what the tool does without usage context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
delete_observationsC
Delete specific observations from entities in the knowledge graph
| Name | Required | Description | Default |
|---|---|---|---|
| deletions | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden but offers minimal behavioral insight. It states this is a deletion operation (implying destructive), but doesn't mention permissions needed, whether deletions are permanent/reversible, rate limits, or what happens to related data. For a destructive tool with zero annotation coverage, this is inadequate.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that directly states the tool's function without unnecessary words. It's appropriately sized for a basic tool description and gets straight to the point.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a destructive tool with no annotations, no output schema, and 0% schema description coverage, the description is insufficient. It doesn't explain what 'observations' are, how they relate to entities, what the deletion entails, or what the agent should expect as a result. More context is needed given the complexity and risk profile.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the schema provides no parameter documentation. The description mentions 'specific observations' and 'entities in the knowledge graph', which hints at the parameters but doesn't explain what entityName represents, what format observations take, or how deletions are processed. It adds marginal context but doesn't fully compensate for the coverage gap.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Delete') and target ('specific observations from entities in the knowledge graph'), which distinguishes it from sibling tools like delete_entities or delete_relations. However, it doesn't specify what 'observations' are or how they differ from other graph elements, leaving some ambiguity.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided on when to use this tool versus alternatives like delete_entities or delete_relations. The description implies it's for removing observations, but doesn't clarify prerequisites, dependencies, or scenarios where this is the appropriate choice among deletion tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
delete_relationsC
Delete multiple relations from the knowledge graph
| Name | Required | Description | Default |
|---|---|---|---|
| relations | Yes | An array of relations to delete |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. While 'Delete' implies a destructive mutation, it doesn't specify whether this operation is reversible, what permissions are required, how errors are handled, or what happens to related data. For a destructive tool with zero annotation coverage, this is a significant gap in behavioral context.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that directly states the tool's purpose without unnecessary words. It's appropriately sized and front-loaded, with every word earning its place in conveying the core functionality.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a destructive mutation tool with no annotations and no output schema, the description is incomplete. It doesn't explain what happens after deletion, whether there are side effects, what the return value looks like, or any error conditions. Given the complexity and risk of a delete operation, more contextual information is needed.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, with the schema fully documenting the 'relations' array parameter and its nested properties. The description adds no additional parameter semantics beyond what's already in the schema, so it meets the baseline score of 3 where the schema does the heavy lifting.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Delete') and resource ('multiple relations from the knowledge graph'), making the tool's purpose immediately understandable. However, it doesn't differentiate from sibling tools like 'delete_entities' or 'delete_observations' beyond specifying 'relations' as the target resource.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives like 'delete_entities' or 'delete_observations'. It lacks context about prerequisites, when-not-to-use scenarios, or explicit comparisons with sibling tools, leaving the agent to infer usage from tool names alone.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
injection_ragC
Analyse du projet complet + prépare et injecte les données automatiquement (Phase 0 → RAG)
| Name | Required | Description | Default |
|---|---|---|---|
| project_path | Yes | Chemin absolu vers le projet à analyser et injecter | |
| file_patterns | No | Patterns de fichiers à inclure (ex: ['**/*.py', '**/*.js']) | |
| recursive | No | Parcourir les sous-dossiers récursivement | |
| log_level | No | Niveau de logs (INFO, DEBUG, ERROR) | INFO |
| enable_graph_integration | No | Activer l'intégration automatique avec le graphe de connaissances |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It mentions analyzing, preparing, and injecting data automatically, but doesn't specify what 'injecte' entails (e.g., where data is stored, if it's destructive, authentication needs, or rate limits). The phrase 'automatiquement' hints at automation but lacks operational details.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that front-loads the core action. It could be slightly more structured (e.g., separating analysis from injection phases), but it avoids redundancy and wastes no words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a complex tool with 5 parameters, no annotations, and no output schema, the description is incomplete. It doesn't explain what 'RAG' means, what data is injected where, or the expected outcomes. Given the lack of structured fields, more behavioral and contextual details are needed.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema fully documents all 5 parameters. The description adds no parameter-specific information beyond what's in the schema, such as explaining how 'file_patterns' relate to analysis or what 'enable_graph_integration' does in practice. Baseline 3 is appropriate when schema does the heavy lifting.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: 'Analyse du projet complet + prépare et injecte les données automatiquement (Phase 0 → RAG)'. It specifies the verb (analyze, prepare, inject) and resource (project data), though it doesn't explicitly differentiate from sibling tools like 'manage_projects' or 'update_project'.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It mentions 'Phase 0 → RAG' but doesn't explain what this phase entails or how it relates to other tools like 'search_code' or 'read_graph'. No exclusions or prerequisites are stated.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
manage_projectsC
Gérer et lister les projets indexés
| Name | Required | Description | Default |
|---|---|---|---|
| action | No | Action à effectuer | list |
| project_path | No | Chemin du projet pour les statistiques (requis pour 'stats') |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It states the tool can 'manage' projects, implying potential write operations, but doesn't specify what management entails (e.g., creation, deletion, modification) or any behavioral traits like permissions, side effects, or response format. This leaves significant gaps in understanding how the tool behaves beyond basic parameter handling.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient French phrase ('Gérer et lister les projets indexés') that is front-loaded and wastes no words. It could be slightly more structured by separating the two functions, but it remains appropriately concise without unnecessary elaboration.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (managing and listing projects with two parameters) and the lack of annotations and output schema, the description is incomplete. It doesn't explain what 'manage' involves, how results are returned, or any prerequisites, leaving the agent with insufficient context to use the tool effectively beyond basic parameter passing.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 100% description coverage, clearly documenting both parameters with enums and defaults. The description adds no additional meaning beyond the schema, such as explaining the context of 'indexed projects' or detailing the 'stats' action. Since the schema does the heavy lifting, the baseline score of 3 is appropriate, but no extra value is contributed.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description 'Gérer et lister les projets indexés' states the tool manages and lists indexed projects, which provides a general purpose but lacks specificity. It mentions two actions (manage and list) but doesn't clarify what 'manage' entails or how it differs from sibling tools like 'update_project'. The purpose is somewhat vague rather than clearly distinguishing this tool's unique function.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided on when to use this tool versus alternatives. The description doesn't indicate scenarios for choosing 'manage_projects' over sibling tools such as 'update_project' for modifications or 'read_graph' for data retrieval. Without any context on usage timing or exclusions, the agent must infer from the tool name and parameters alone.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
open_nodesC
Open specific nodes in the knowledge graph by their names
| Name | Required | Description | Default |
|---|---|---|---|
| names | Yes | An array of entity names to retrieve |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full burden. It states 'open' but doesn't clarify what 'open' means operationally—whether it retrieves node details, expands them in a UI, or performs some other action. It doesn't disclose permissions needed, rate limits, or what happens if nodes don't exist. For a tool with no annotations, this leaves significant behavioral gaps.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence with zero waste. It front-loads the core action and resource, making it easy to scan. Every word contributes to understanding the tool's purpose.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no annotations and no output schema, the description is incomplete for a tool that likely retrieves or accesses node data. It doesn't explain what 'open' entails behaviorally, what information is returned, or how errors are handled. For a knowledge graph tool with siblings that include mutations, more context is needed to ensure safe and correct use.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, with the parameter 'names' fully documented in the schema as 'An array of entity names to retrieve'. The description adds minimal value beyond this, only implying that names are used to identify nodes. Baseline 3 is appropriate since the schema does the heavy lifting.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('open') and target resource ('specific nodes in the knowledge graph'), specifying they are opened 'by their names'. It distinguishes from siblings like 'search_nodes' (searching) and 'read_graph' (reading entire graph). However, it doesn't explicitly differentiate from 'create_entities' or 'delete_entities' in terms of effect on nodes.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives like 'search_nodes' (for finding nodes) or 'read_graph' (for broader graph access). It mentions opening nodes 'by their names', which implies you need to know exact names, but doesn't state this as an explicit prerequisite or exclusion.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
read_graphC
Read the entire knowledge graph
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It states 'read' implies a safe operation, but doesn't clarify performance aspects (e.g., is this a heavy operation that might time out?), data format (structured graph? raw text?), or side effects (does it cache data?). For a tool with zero annotation coverage, this leaves significant gaps in understanding how it behaves.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, clear sentence with no wasted words. It's front-loaded with the core action and resource, making it easy to parse quickly. Every word contributes to understanding the tool's function.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the complexity of a knowledge graph tool with no annotations and no output schema, the description is insufficient. It doesn't explain what 'read' returns (e.g., nodes, edges, metadata) or handle potential issues like large graph sizes. For a tool that likely interacts with structured data, more context on output and behavior is needed to be complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 0 parameters with 100% coverage, meaning no parameters are documented in the schema. The description doesn't mention any parameters, which is appropriate since none exist. It implies the tool reads the graph without inputs, adding value by clarifying the scope ('entire'), though it could specify if filters or options are implicitly applied.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description 'Read the entire knowledge graph' clearly states the action (read) and resource (knowledge graph), making the purpose understandable. However, it lacks specificity about what 'entire' means (all nodes/relations? all data without filtering?) and doesn't distinguish this from sibling tools like 'search_nodes' or 'open_nodes', which might also read graph data with different scopes.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. With siblings like 'search_nodes' (likely for filtered queries) and 'open_nodes' (possibly for specific nodes), there's no indication that this tool is for bulk retrieval versus targeted access. No prerequisites, exclusions, or comparative context are mentioned.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_codeC
Recherche sémantique dans le code indexé avec options RAG
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | Requête de recherche sémantique | |
| project_filter | No | Filtrer par chemin de projet spécifique |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full burden. It mentions 'semantic search' and 'RAG options' but doesn't disclose critical behavioral traits: whether this is read-only or has side effects, what the output format looks like, if there are rate limits, authentication needs, or how results are returned (e.g., pagination). The description is too vague to inform safe and effective use.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence in French that directly states the tool's purpose. It's appropriately sized and front-loaded with key information. However, it could be slightly more structured by separating the core function from the RAG feature.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the complexity of a search tool with RAG options, no annotations, and no output schema, the description is incomplete. It lacks details on behavioral traits, output format, and usage guidelines. For a tool that likely returns complex results, more context is needed to ensure the agent can interpret and use it correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents both parameters ('query' and 'project_filter') with descriptions. The tool description adds no additional meaning beyond what's in the schema—it doesn't explain parameter interactions, default behaviors, or examples. Baseline 3 is appropriate when schema does the heavy lifting.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool performs 'semantic search in indexed code with RAG options', which specifies the verb (search), resource (indexed code), and method (semantic with RAG). It distinguishes from siblings like 'search_nodes' by focusing on code rather than general nodes. However, it doesn't explicitly differentiate from other search tools beyond the resource type.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives like 'search_nodes' or 'injection_rag'. It mentions RAG options but doesn't explain when semantic search with RAG is preferred over other methods. No exclusions, prerequisites, or contextual advice are given.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_nodesC
Search for nodes in the knowledge graph based on a query
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | The search query to match against entity names, types, and observation content |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden for behavioral disclosure. It states the basic search functionality but doesn't describe what 'search' entails - whether it returns partial matches, supports advanced operators, has pagination, returns specific fields, or has any rate limits or authentication requirements. For a search tool with zero annotation coverage, this is insufficient.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that directly states the tool's purpose without unnecessary words. It's appropriately sized for a single-parameter search tool and front-loads the essential information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a search tool with no annotations and no output schema, the description is incomplete. It doesn't explain what constitutes a 'node' in this context, what fields are searched (beyond what's implied in the schema), what the return format looks like, or how results are structured. The agent would need to guess about the tool's behavior and outputs.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents the single 'query' parameter with its description. The tool description adds no additional parameter information beyond what's in the schema, so it meets the baseline for adequate but unenriched parameter documentation.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose as 'Search for nodes in the knowledge graph based on a query', specifying the verb (search), resource (nodes), and context (knowledge graph). It distinguishes from obvious non-search siblings like create/delete operations, but doesn't explicitly differentiate from other search tools like search_code.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It doesn't mention when search_nodes is appropriate versus open_nodes, read_graph, or search_code, nor does it specify any prerequisites or contextual constraints for usage.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
update_projectC
Mettre à jour l'indexation d'un projet (indexation incrémentale) avec options RAG
| Name | Required | Description | Default |
|---|---|---|---|
| project_path | Yes | Chemin absolu vers le projet à mettre à jour | |
| file_patterns | No | Patterns de fichiers à inclure | |
| recursive | No | Parcourir les sous-dossiers récursivement | |
| embedding_provider | No | Fournisseur d'embeddings (fake, ollama, sentence-transformers) | fake |
| embedding_model | No | Modèle d'embeddings (pour Ollama: 'nomic-embed-text', 'all-minilm', etc.) | nomic-embed-text |
| chunk_size | No | Taille des chunks pour le découpage (en tokens) | |
| chunk_overlap | No | Chevauchement entre les chunks (en tokens) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden but offers minimal behavioral insight. 'Mettre à jour' implies a mutation operation, but it doesn't disclose whether this requires specific permissions, what 'indexation incrémentale' entails practically, how long it might take, whether it's idempotent, or what happens on failure. The mention of RAG options is vague without explaining their impact.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that states the core purpose. There's no fluff or redundancy. However, it could be more front-loaded with critical behavioral context given the mutation nature and lack of annotations.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a mutation tool with 7 parameters, no annotations, and no output schema, the description is inadequate. It doesn't explain what 'indexation incrémentale' means operationally, what RAG options do, what the tool returns, or error conditions. The agent lacks sufficient context to use this tool confidently without trial and error.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema fully documents all 7 parameters. The description adds no parameter-specific information beyond what's in the schema—it doesn't explain relationships between parameters (e.g., how 'embedding_provider' interacts with 'embedding_model') or provide usage examples. Baseline 3 is appropriate when the schema does all the work.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Mettre à jour l'indexation d'un projet') and specifies it's incremental indexing with RAG options. It distinguishes from siblings like 'manage_projects' or 'search_code' by focusing on indexing rather than general management or search. However, it doesn't explicitly differentiate from potential similar indexing tools if they existed.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It doesn't mention prerequisites, when incremental indexing is appropriate, or how it differs from other project-related tools like 'manage_projects' or 'injection_rag'. The agent must infer usage from the name and parameters alone.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
TDQS
Most tools have distinct purposes centered around knowledge graph operations, but there is some overlap between 'search_nodes' and 'search_code' that could cause confusion. Additionally, 'injection_rag' and 'update_project' both involve RAG indexing but differ in scope, which might lead to misselection if not carefully described.
The naming is inconsistent with a mix of snake_case English verbs (e.g., 'add_observations', 'create_entities') and French terms (e.g., 'injection_rag', 'manage_projects'), and some tools use different verb styles like 'open_nodes' vs. 'read_graph'. This lack of a predictable pattern reduces clarity and usability.
With 13 tools, the count is reasonable for a RAG and knowledge graph server, covering core operations like CRUD for entities, relations, and observations, as well as project management and search. It's slightly on the higher side but still well-scoped for the domain.
The tool set provides good coverage for knowledge graph management and RAG operations, including create, read, update, and delete functions for entities, relations, and observations. Minor gaps exist, such as no explicit tool for updating entities or relations, but agents can likely work around this using deletion and recreation.
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 Connectors
Company brain for AI agents — temporal knowledge graph search, exploration, and durable memory.
Code intelligence for coding agents: semantic, AST, graph, and full-text search. 279+ languages.
Persistent knowledge graph for AI-augmented teams. Store decisions, findings, and standing rules across agent sessions with semantic search and typed connections. Includes cross-session memory, audit trail, workspace isolation, and secret detection. Built for teams running agents that need to remember. Free until launch with team tier as default, anon trial available.
Self-hosted AI-native knowledge workspace with hybrid search, GraphRAG, and MCP.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceEnables semantic code search across multiple repositories using AST-aware chunking and relationship tracking. Supports local LLM embeddings, real-time indexing, and cross-codebase dependency analysis through vector and graph databases.3MIT
- FlicenseNot gradedqualityCmaintenanceTransforms code repositories and development documentation into a queryable Neo4j knowledge graph, enabling AI assistants to perform intelligent code analysis, dependency mapping, impact assessment, and automated documentation generation across 15+ programming languages.7
- AlicenseNot gradedqualityCmaintenanceProvides semantic code search and code insights via a knowledge graph, enabling AI to understand, navigate, and modify complex projects with deep dependency and architecture analysis.MIT
- AlicenseAqualityDmaintenanceEnables creating and querying semantic knowledge graphs to model business logic, code relationships, and project structure across multiple projects.111MIT
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/ali-48/rag-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server