Open Docs Mcp

Created By
askme765csa year ago
Overview

what is Open Docs Mcp?

Open Docs Mcp is an open-source MCP (Multi-Channel Protocol) server implementation that provides document management functionality, allowing users to crawl, index, and manage documentation from various sources.

how to use Open Docs Mcp?

To use Open Docs Mcp, run the command npx -y open-docs-mcp --docsDir /path/to/docs in your terminal, specifying the directory containing your documents.

key features of Open Docs Mcp?

  • Crawl and index documentation from multiple sources.
  • Support for various document formats (HTML, Markdown, etc.).
  • Full-text search capabilities across indexed documents.
  • Resource-based access to documents via an API.
  • Tools for enabling/disabling document crawling and managing document sources.

use cases of Open Docs Mcp?

  1. Managing and searching through large sets of documentation for software projects.
  2. Integrating with AI systems to provide contextual document access.
  3. Automating the indexing and updating of documentation in real-time.

FAQ from Open Docs Mcp?

  • What document formats are supported?

Open Docs Mcp supports multiple formats including HTML and Markdown.

  • Is Open Docs Mcp free to use?

Yes! Open Docs Mcp is open-source and free to use.

  • How can I contribute to the project?

Contributions are welcome! Please open an issue to discuss major changes before submitting a pull request.

Server Config

{
  "mcpServers": {
    "open-docs-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "open-docs-mcp",
        "--docsDir",
        "/path/to/docs"
      ]
    }
  }
}
Project Info
Created At
a year ago
Updated At
a year ago
Author Name
askme765cs
Star
-
Language
-
License
-

Recommend Servers

View All
Shippo
@Shippo

2 days ago
Wpnews

a day ago
//beforeyouship — LLM Cost Modeling From Your Editor
@Indiegoing

Query realistic LLM cost models without leaving your editor. beforeyouship models the **true monthly cost** of an LLM app architecture — retries, prompt caching, batch discounts, infra overhead, and 3×/10× growth — across GPT-5.x, Claude, Gemini, DeepSeek, and more. Not a token calculator: a planning tool for the design phase, before you commit to a stack. **No API key needed to try it** — demo mode covers the six free-tier models. A Pro key from [beforeyouship.dev](https://beforeyouship.dev) unlocks the full 18-model catalog. ## What you can ask - "How much will a RAG chatbot cost at 10,000 requests/day?" - "Compare Claude Haiku vs Gemini Flash pricing for my workload" - "What's the cheapest model for a multi-step agent at scale?" - "Show me current per-token prices for Anthropic models" ## Tools ### `estimate_cost` Full cost model for an architecture at a given usage level. Returns Naive / Realistic / Worst Case monthly cost per model, 3×/10× growth scenarios, and an opinionated recommendation with reasoning. ### `get_model_prices` Current per-1M-token pricing — input, output, cached input, batch — with context windows and staleness metadata. ### `list_archetypes` Seven preset architecture patterns (simple chatbot, chatbot with history, RAG pipeline, multi-model router, coding assistant, document processor, multi-step agent) used as starting points for estimates. ## Setup **Claude Code:** ​```bash claude mcp add --transport http beforeyouship https://beforeyouship.dev/api/mcp ​``` **Cursor / other clients** — add a remote server: ​```json { "mcpServers": { "beforeyouship": { "type": "streamable-http", "url": "https://beforeyouship.dev/api/mcp" } } } ​``` Add an `Authorization: Bearer bys_...` header with a Pro key for the full catalog. ## Try it > Estimate the monthly cost of a RAG pipeline at 10,000 requests/day

2 days ago