Skip to main content
AllMCPs
BrowseBestCategoriesStackCompareToolsGuidesBlog Log in Submit MCP

Stay in the loop

Get new MCP servers and top picks in your inbox.

AllMCPs

The open directory for discovering and installing Model Context Protocol servers.

Explore

  • Browse servers
  • Best MCP servers
  • Categories
  • MCP clients
  • Agent prompts
  • Stack Builder
  • Compare servers
  • Tags index
  • Submit a server
  • Pricing

Learn

  • Guides hub
  • What is MCP?
  • Install guide
  • Troubleshooting
  • Security
  • Blog
  • Blog RSS

Tools

  • All tools
  • Config generator
  • Config validator
  • MCP playground
  • OpenAPI → MCP
  • Badge generator

For agents

  • API docs
  • Trust & traffic
  • llms.txt ↗ (opens in a new tab)
  • Catalog JSON ↗ (opens in a new tab)
  • Remote MCP ↗ (opens in a new tab)

Company

  • About
  • Contact
  • X (@AllMCPs) ↗ (opens in a new tab)
  • GitHub ↗ (opens in a new tab)
  • Terms
  • Privacy
AllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistAllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on Buildlist
© 2026 Jackalope Digital LLC. All rights reserved.
  1. Home
  2. 🧠 Knowledge & Memory
  3. FastMCP server for Obsidian wikilink suggestions from a pre Computed knowledge g
F
Health: Not checked yetWe have not completed a health check for this listing yet.Last checked 8/11/2026, 12:22:19 AM

FastMCP server for Obsidian wikilink suggestions from a pre Computed knowledge g

Enrichment pendingWe haven’t run our AI enrichment pass on this listing yet, so the overview, use cases, and FAQ below may be sparse or missing. We work through the catalog over time — check back soon.
View Repository

FastMCP server for Obsidian wikilink suggestions from a pre-computed knowledge graph (graphify…

Quick Install

Automated & IDE Setup

Copy the AI prompt to install this server into Claude Code, Cursor, or another agent — or use 1-click editor setup below.

Add to CursorAdd to VS Code
Manual Client & Custom JSON ConfigExpand JSON ▾

Install Config Generator

Choose your client
claude_desktop_config.json
{
  "mcpServers": {
    "fastmcp-server-for-obsidian-wikilink-suggestions-from-a-pre-computed-knowledge-g": {
      "command": "npx",
      "args": [
        "-y",
        "fastmcp-server-for-obsidian-wikilink-suggestions-from-a-pre-computed-knowledge-g"
      ]
    }
  }
}

💡 Paste into ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

Install Directory Badge Claim listing Alternatives🧠 More in Knowledge & Memory

Documentation Overview

graph-autotagger-mcp

License GitHub stars Last commit Open issues PyPI version PyPI downloads Built by Mycelium AI

A FastMCP server that reads a pre-computed Obsidian knowledge graph and suggests wikilinks for your notes. Designed as a companion to graphify — run graphify to build the graph, then this MCP surfaces connections as you write.

Tools

ToolWhat it does
suggest_linksSuggest wikilinks for a note based on token overlap with graph node labels
check_god_nodesCheck which highly-connected nodes (top 20 by degree) are relevant to the note
community_matchFind which graph communities the note most closely belongs to
log_suggestion_decisionLog accepted/rejected/ignored decisions to a local SQLite database

Install

Open Claude Code, paste:

Code
/plugin marketplace add adelaidasofia/graph-autotagger-mcp
/plugin install graph-autotagger-mcp@graph-autotagger-mcp

After install, set GRAPH_JSON_PATH (see Environment variables below) and restart Claude Code, then ask:

"Suggest wikilinks for this note: [paste note content]"

Legacy install
Terminal
pip install fastmcp
  1. Clone:

    bash
    git clone https://github.com/adelaidasofia/graph-autotagger-mcp.git
    cd graph-autotagger-mcp
    
  2. Set the path to your graph.json:

    server.ts
    export GRAPH_JSON_PATH="~/vault/.graph/graph.json"
    

    Or pass it at registration time (see below).

  3. Self-test:

    bash
    python3 server.py
    
  4. Register with Claude Code:

    Terminal
    claude mcp add graph-autotagger -s user -- \
      env GRAPH_JSON_PATH="$HOME/vault/.graph/graph.json" \
      python3 /path/to/graph-autotagger-mcp/server.py
    
  5. Restart Claude Code, then ask:

    "Suggest wikilinks for this note: [paste note content]"

Environment variables

VariableDefaultDescription
GRAPH_JSON_PATH~/vault/.graph/graph.jsonPath to your graphify output
AUTOTAGGER_DB~/.config/graph-autotagger/log.dbSQLite log for suggestion decisions

How it works

The server loads graph.json once at startup and caches it in memory. Node labels are tokenized and matched against note content using token overlap scoring. God Nodes (top 20 by degree) get special treatment since connecting to them creates high-value cross-links.

The log_suggestion_decision tool lets you build a feedback dataset over time: accepted suggestions can be used to tune the relevance threshold; rejected ones reveal graph noise.

graph.json format

Expects the output format from graphify (networkx node_link_data):

config.json
{
  "nodes": [{"id": "node-id", "label": "Node Label", "community": 0}],
  "links": [{"source": "node-a", "target": "node-b"}]
}

Note: networkx serializes edges under "links", not "edges".

Related MCPs

Same author, same architecture pattern (FastMCP, draft+confirm on writes where applicable, vault auto-export, MIT):

  • slack-mcp - multi-workspace Slack
  • imessage-mcp - macOS iMessage
  • whatsapp-mcp - WhatsApp via whatsmeow
  • google-workspace-mcp - Gmail / Calendar / Drive / Docs / Sheets
  • apollo-mcp - Apollo.io CRM + sequences
  • substack-mcp - Substack writing + analytics
  • luma-mcp - lu.ma events
  • parse-mcp - markitdown / Docling / LlamaParse router
  • rescuetime-mcp - RescueTime productivity data
  • graph-query-mcp - vault knowledge graph queries
  • investor-relations-mcp - seed-raise pipeline tracker
  • vault-sync-mcp - bidirectional vault sync

Telemetry

This plugin sends a single anonymous install signal to myceliumai.co the first time it loads in a Claude Code session on a given machine.

What is sent:

  • Plugin name (e.g. slack-mcp)
  • Plugin version (e.g. 0.1.0)

What is NOT sent:

  • No user identifiers, names, emails, tokens, or API keys
  • No file paths, message content, or anything from your work
  • No IP address is stored after dedup processing

Why: Helps the maintainer know which plugins people actually install, so attention goes to the ones that get used.

Opt out: Set the environment variable MYCELIUM_NO_PING=1 before launching Claude Code. The hook will skip the network call entirely. Already-pinged installs leave a sentinel at ~/.mycelium/onboarded-<plugin> — delete it if you want to reset state.

License

MIT


Built by Mycelium AI. Full install or team version at diazroa.com.

Related MCP Servers

View all in Knowledge & Memory View all alternatives
  • Moxie Docs MCP logoMoxie Docs MCP
    ★ Featured

    MCP & Agent Skills for Automated Documentation, and codebase conventions + context

    🧠 Knowledge & Memory17 views
    Compare vs Moxie Docs MCP →
  • Codebase Memory Mcp logoCodebase Memory Mcp

    Code-intelligence engine that indexes a repo into a persistent knowledge graph — functions, classes, call chains, HTTP routes, cross-service links. 159 languages via tree-sitter + Hybrid LSP, sub-ms structural queries, 99% fewer tokens than grep. Single static binary, zero dependencies, 100% local. npx codebase-memory-mcp

    🧠 Knowledge & Memory6 views
    Compare vs Codebase Memory Mcp →
  • Mcp Server logoMcp Server

    Apple Developer Documentation with Semantic Search, RAG, and AI reranking for MCP clients

    🧠 Knowledge & Memory0 views
    Compare vs Mcp Server →
  • Mcp Obsidian logoMcp Obsidian

    Universal AI bridge for Obsidian vaults using MCP. Provides safe read/write access to notes with 11 comprehensive methods for vault operations including search, batch operations, tag management, and frontmatter handling. Works with Claude, ChatGPT, and any MCP-compatible AI assistant.

    🧠 Knowledge & Memory2 views
    Compare vs Mcp Obsidian →

Frequently Asked Questions about FastMCP server for Obsidian wikilink suggestions from a pre Computed knowledge g

Add the following block to your claude_desktop_config.json under mcpServers: "mcpServers": { "fastmcp-server-for-obsidian-wikilink-suggestions-from-a-pre-computed-knowledge-g": { "command": "npx", "args": ["-y", "FastMCP server for Obsidian wikilink suggestions from a pre-computed knowledge g"] } }

AllMCPs Directory Badge

Full Badge Customizer

Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.

Badge Style:
Live Dynamic SVG PreviewFastMCP server for Obsidian wikilink suggestions from a pre Computed knowledge g AllMCPs Directory Badge
Markdown (GitHub README)
[![AllMCPs](https://allmcps.com/api/badge/fastmcp-server-for-obsidian-wikilink-suggestions-from-a-pre-computed-knowledge-g?style=directory)](https://allmcps.com/mcp/fastmcp-server-for-obsidian-wikilink-suggestions-from-a-pre-computed-knowledge-g)
HTML Embed
<a href="https://allmcps.com/mcp/fastmcp-server-for-obsidian-wikilink-suggestions-from-a-pre-computed-knowledge-g"><img src="https://allmcps.com/api/badge/fastmcp-server-for-obsidian-wikilink-suggestions-from-a-pre-computed-knowledge-g?style=directory" alt="FastMCP server for Obsidian wikilink suggestions from a pre Computed knowledge g on AllMCPs" /></a>

Technical Specs & Signals

Category🧠Knowledge & Memory
More technical detailsExpand ▾
TransportSTDIO
RuntimeNode.js
0/4 checks healthy over the last 8h
Views0
Unique ViewsTotal visits recorded for this listing page on AllMCPs.
Installs0
Installs & Copy ActionsTotal times users copied install commands or configuration snippets for this server.
27Quality signal: Emerging · 27/100How this signal is calculated ▾
Server availabilityNot measured

Not scored for repo-hosted servers — we can't reach the running server, only its GitHub page. Hosted MCP endpoints are health-checked live.

Verified ownership8/20
Documentation & tools11/30
Adoption & activity1/15
Community engagement0/10

A guidance signal from public completeness & health data — not a user rating. New listings start lower and rise as they add docs, get verified, and grow adoption. Signals we can't observe for a listing are skipped, not counted against it.

★ FeaturedAllMCPs Server logo

AllMCPs Server

The official MCP server for AllMCPs.com - submit and manage tools directly from your AI. The open directory for MCP servers. Connect Claude, Cursor, Windsurf, and AI agents to databases, tools, files, and APIs. Explore 3,181+ servers. AllMCPs is the premier, open directory for discovering, evaluating, and installing Model Context Protocol (MCP) servers to equip AI agents and LLMs with real-world superpowers.

Explore Server →

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to get the verified badge and attach your website.

Free dofollow backlink: after claiming, verify your product site and place a dofollow AllMCPs badge — we recheck it stays live.

Claim & get free dofollow

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.

Explore more

More in 🧠 Knowledge & Memory →Best MCP servers for Memory & Knowledge →Alternatives to FastMCP server for Obsidian wikilink suggestions from a pre Computed knowledge g →Install in Claude DesktopInstall in CursorInstall in VS Code