@littlebigbrain/mcp
Related Servers
Alternatives to @littlebigbrain/mcp
No user-submitted related servers found.
Related Servers
- FlicenseNot gradedqualityDmaintenanceAn MCP server that enables graph database interactions with Neo4j, allowing users to access and manipulate graph data through natural language commands.-
- FlicenseNot gradedqualityDmaintenanceMCP server that connects AI assistants to the Data Graphs knowledge graph platform, enabling natural language search, exploration, and querying of graph data.4 npm-
- AlicenseNot gradedqualityBmaintenanceProvides a code graph querying and visualization MCP server, enabling users to search, trace, and describe code components, overlay diffs, and explore architecture through natural language.MIT
- AlicenseAqualityBmaintenanceAn MCP server for TheBrain 15 that enables semantic search, graph traversal, and structured writing to a personal knowledge base via its local API. It provides tools to read and write thoughts, notes, links, and tags, with optional local embeddings for meaning-based search.1734 npm6MIT
- AlicenseNot gradedqualityCmaintenanceAn MCP server that builds a knowledge graph from code and text documents, enabling Q\&A and implementation planning via tools like graph_create, graph_plan, and graph_query.7MIT
- AlicenseAqualityDmaintenanceAn MCP server that enables AI-powered exploration of RDF data and SPARQL querying via RDF4J. It provides tools for executing queries, searching knowledge graph resources, and retrieving schema summaries.131MIT
TDQS
Scored across 8 tools
Each tool has a clearly distinct purpose: lbb_rdf handles RDF/OWL document import/update, lbb_commit writes/retracts graph facts and feedback, lbb_inspect reads graph context/metadata, lbb_query executes SPARQL, lbb_configure manages schema metadata, lbb_branch handles branch lifecycle, lbb_models provides model training data, and lbb_observe captures conversations. Despite some overlap in write operations, the descriptions explicitly delineate boundaries (e.g., lbb_rdf vs. lbb_commit), eliminating ambiguity.
All tools share the 'lbb_' prefix and use lowercase single-word names, which is readable and predictable. However, the second part mixes verbs (inspect, query, commit, configure, observe) and nouns (rdf, branch, models), so it does not follow a strict verb_noun pattern. The consistency of the prefix and clarity of each name mitigate this minor inconsistency.
With 8 tools, the server is well-scoped for its domain (a knowledge graph with RDF support, schema management, branching, and observation). This falls comfortably within the ideal 3-15 range, and each tool provides a distinct capability without redundancy.
The server covers core lifecycle operations: RDF import/update, graph fact writes/retraction, SPARQL querying, schema definition/evolution, branching/merging, model data access, and observation. However, there is no direct RDF deletion (only additive updates via lbb_rdf and retraction via lbb_commit), and no tool for exporting or bulk deleting graph data, leaving minor gaps that agents can work around.