Jangada Docs MCP

Jangada Docs MCP

Enables AI assistants to access the complete documentation of the jangada library, ensuring they write code using the correct and current API without guessing function names or parameters.

Category
Visit Server

README

Jangada Docs MCP

Servidor MCP que dá ao seu assistente de IA (Claude Code, Claude Desktop, Cursor…) acesso a toda a documentação da biblioteca jangada (jangada-ai). Assim o assistente escreve código com a API atual e correta — sem inventar nomes de função, assinaturas ou parâmetros.

Feito para desenvolvedores que constroem com o jangada. É o próprio jangada sendo um servidor MCP (serve_mcp, protocolo stdio). A doc vem embutida no pacote — self-contained, sem depender de rede em runtime.


Jeito mais fácil: uvx (sem clonar nada)

Como o npx do Node, o uvx roda o servidor direto do GitHub — sem clonar, sem instalar manualmente. Só precisa do uv (curl -LsSf https://astral.sh/uv/install.sh | sh).

Comando que as configurações abaixo usam:

uvx --from git+https://github.com/nerigleston/jangada-docs-mcp jangada-docs-mcp

(O uvx baixa, monta e roda o pacote numa sandbox temporária a cada uso.)


Claude Code

Em um projeto específico (escopo do projeto)

Vale só naquele projeto (ideal para times — pode commitar). Crie um .mcp.json na raiz do projeto:

{
  "mcpServers": {
    "jangada-docs": {
      "command": "uvx",
      "args": ["--from", "git+https://github.com/nerigleston/jangada-docs-mcp", "jangada-docs-mcp"]
    }
  }
}

Ou pela CLI:

claude mcp add jangada-docs --scope project -- \
  uvx --from git+https://github.com/nerigleston/jangada-docs-mcp jangada-docs-mcp

Globalmente (todos os seus projetos)

Disponível em qualquer projeto seu (escopo do usuário, fica no seu PC):

claude mcp add jangada-docs --scope user -- \
  uvx --from git+https://github.com/nerigleston/jangada-docs-mcp jangada-docs-mcp

Escopos do Claude Code: project (no .mcp.json do projeto, compartilhável) · local (só você, naquele projeto) · user (global, todos os seus projetos).


Claude Desktop (global)

Settings → Developer → Edit Config (claude_desktop_config.json):

{
  "mcpServers": {
    "jangada-docs": {
      "command": "uvx",
      "args": ["--from", "git+https://github.com/nerigleston/jangada-docs-mcp", "jangada-docs-mcp"]
    }
  }
}

Reinicie o Claude Desktop.

Cursor

  • Global: ~/.cursor/mcp.json · Projeto: .cursor/mcp.json

Use o mesmo bloco mcpServers acima.


Alternativa sem uv (clonar o repo)

git clone https://github.com/nerigleston/jangada-docs-mcp
cd jangada-docs-mcp
pip install -r requirements.txt        # = jangada-ai[mcp]

Aponte a config para o python do seu ambiente + o server:

{
  "mcpServers": {
    "jangada-docs": {
      "command": "/caminho/para/python",
      "args": ["-m", "jangada_docs_mcp.server"]
    }
  }
}

Ferramentas expostas

Ferramenta Para que serve
jangada_indice() Índice/ordem das páginas. Comece aqui.
jangada_listar_docs() Lista todas as páginas (nome — título).
jangada_ler_doc(nome, lang) Conteúdo completo de uma página (pt padrão ou en).
jangada_buscar(termo) Procura um termo em toda a doc (trechos + página).

O assistente decide sozinho quando chamar — ex.: você pede "faça um RAG com reranking" e ele consulta jangada_ler_doc("rag") antes de escrever.

Como funciona

jangada_docs_mcp/server.py registra as funções acima como ferramentas MCP via jangada_ai.serve_mcp(...) — sobre o Server low-level do protocolo MCP (não FastMCP). Transporte stdio. A doc fica em jangada_docs_mcp/docs/ (snapshot do site da lib), empacotada no wheel.

Licença

MIT — veja LICENSE.

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured