MCP Server for continue.dev
The MCP Server for continue.dev is a Python-based server that provides customizable prompts, resources, and tools for enhancing workflows with LLMs.
Prompts: Offers markdown-based prompt templates with variable templating for tasks like code review, readability checks, brainstorming, test creation, and generating project blueprints.
Resources: Provides access to extracted URL content, library documentation, and project structures/content from CodeWeawer or Repomix.
Tools: Enables web search with or without summaries using services like Serper and Perplexity.io, and includes tools for code testing such as finding missed tests and running unit tests.
Allows creation and management of prompt templates from markdown files in the 'prompts' folder, with variable templating support using {{variable}} format
Provides web search results with summaries through perplexity.io as a tool for AI agents
Server implementation that exposes customizable prompt templates, resources, and tools for AI-assisted development
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., "@MCP Server for continue.devreview this code for readability and Clean Code compliance"
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.
Model Context Protocol ( MCP ) server for Obsidian vault
This is side research and learning project, mostly focused on AI Agents and information retrivial, as well as evaluation of AI tools.
The server allows access to Obsidian.md Vault with search and read tools. Obsidian is the plain text Markdown editor, and keeps all note files in the single folder. The format makes it perfect companion and knowledge storage for AI Agents.
I do use combination of AI coding agent ( Claude Code, Cursor ) with Obsidian.md Vault since 2024, similar to Andrej Karpathy LLM Wiki, but a little bit more complicated with his proposal. With > 1500 notes, agents often miss important information, so I decided to create search tool that aware of knowledge organization that I use
Provided functionality
Web deep research
web_research tool is an AI agent similar by the functionality to Perplaxity.ai to answer questions based on the public information in Internet. It's optimised to answer technical or academic questions.
The core loop:
generate web search queries
fetch content from search results URLs. No attempts to bypass bot protections, but supports wide range of public sources: Arxiv.org articles, Github repositories, Reddit forums, Wikipedia, pdf documents - special cases to extract information from them, like switch to reddit API instead of read web pages, or use github raw format instead of html pages.
Use LLM to extract relevant information from fetch results, reduces main agent context
Reflection step that analyses result and decides to finish research or repeat loop to fill knowledge gaps
Final answer generator, creates short answer, long explanation how it was concluded, and relevant links to support answer
Evaluation results
Evaluation were performed with small models like Gamini Flash lite or GPT 5.4 nano to save costs, with fraction of questions. GAIA dataset - 60% on 20 questions DRACO dataset - around 40%, mostly because answers are less detailed than expected in evaluation criteria
Evaluation code not in this repository, it is part of internal project for team wide AI Software development tools, created to optimize process for my startup Jobsflow.ai. The tool ported from that project.
Related MCP server: ZenML MCP Server
Obsidian Vault RAG
obsidian_search is hybrid vector + BM25 search engine, mostly classical RAG. It optimized to Vault organization that I use
Note format assumption
I do keep all notes with the same pattern, and indexing tool uses expected format to split note into chunks and generate additional metadata. The format enforced by special Claude Code skill that used to process all new nortes.
Frontmatter properties:
title- short sentence what is it aboutdescription- 3-4 sentences that describe the note content. Used as a summary similar to RAPTOR combined summary of several chunkstags- I have pre-defined set of tags, that slice notes by 3 dimensions: knowledge area ( ai, programming, finances, ...), note type ( article, tutorial, action item, ...) and narrow subject ( programming language, tool type, activity ). Tool enables retrieve of tags taxonomy and filtering them
Note content - all notes follow scientific essay format, each section separated by first or second level header. Semantic chunking split notes by sections. Links between notes use `[[Wikilinks]] format and also extracted and stored in database. It allows graph like navigation
Note size - keep them no longer than 200 lines
Indexing
Tool crawls vault folders by pattern, and extracts all markdown files. Each file parsed to extract frontmatter properties, splitted by headers ( no more than 500 tokens ) and saved to database with meta information. Chunk content and description also stored as vector embeddings. Chunks created without overlaps, positive search results combined with neibhours instead.
Additional summary chunk created by LLM from whole note content, to increase chances to get into search results.
Reindexing triggered by vault content change, or explicitly from command line.
Search
The query passed through LLM to create Hypotetical abswer . Query itself used for full text search, and generated answer for vector search. This is similar to qmd markdown search
Database search results filtered by Reranker API call ( Cohere or Voiage.ai ), or Reciprocal Rank Fusion from LanceDB. RRFReranker fuses results by rank position instead of raw score, so it sidesteps having to make vector and full-text scores comparable.
The second filtering uses LLM to select chunks relevated to query. Result chunks combined with their neihbors ( so if 5th chunk from note selected, search return combination of 4-6th chunks)
Additional filters
To narrow search, optional parameters:
tagslist of tags that must be present in resultpathfile path pattern I do have 2 special notes, Tags.md with taxonomy, and Folders.md that describe vault organization, MCP server provides tool and instructions to read them
Evaluation
I do use a simple evaluation tool, that performs a query on My Vault snapshot, and counts number of expected words ( precision ), and unwanted words ( recall ). 25 questions total, F1 score ~0.9
Usage
The server uses only a single LLM API provider. I do have LiteLLM AI Gateway (LLM Proxy) , but it can work with Openrouter
Clone repository, create .env file from env.example , and run
# Create vault index
uv run --project <local copy> mcps --vault <Vault Folder> --reindex
# run as HTTP MCP Server
uv run --project <local copy> mcps --vault <Vault Folder> --port 1234With http protocol, a single server available to all AI tools. I do use it as shared Knowledge Base and memory across all projects.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Tools
Latest Blog Posts
- 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/alexsmirnov/obsidian-second-brain-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server