by vaadin
Search Vaadin docs and get component usage guidance for Vaadin Java and React apps—fast, accurate answers and examples.
Searches through Vaadin documentation using AI to help you find framework-specific information for Java (Flow) and React (Hilla) applications. Understands document structure and can navigate between related sections intelligently.
Vaadin is an official MCP server published by vaadin that provides AI assistants with tools and capabilities via the Model Context Protocol. Search Vaadin docs and get component usage guidance for Vaadin Java and React apps—fast, accurate answers and examples. It is categorized under ai ml, developer tools.
You can install Vaadin in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server supports remote connections over HTTP, so no local installation is required.
MIT
Vaadin is released under the MIT license. This is a permissive open-source license, meaning you can freely use, modify, and distribute the software.
Add new capabilities to Claude beyond text generation
Example
Access external data sources, execute code, interact with tools and services
Transform Claude from chatbot to action-taking agent
Provide Claude with access to relevant context and data
Example
Load project documentation, access knowledge bases, query databases
Get more accurate, context-aware responses
Automate multi-step workflows combining AI and external tools
Example
Research → Summarize → Create document → Send notification
Complete complex tasks end-to-end without manual steps
Share your MCP server with the developer community
Useful MCP listing: Vaadin is the kind of server we cite when onboarding engineers to host + tool permissions.
Vaadin has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
I recommend Vaadin for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.
Strong directory entry: Vaadin surfaces stars and publisher context so we could sanity-check maintenance before adopting.
Strong directory entry: Vaadin surfaces stars and publisher context so we could sanity-check maintenance before adopting.
Vaadin is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
Vaadin is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
Vaadin is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.
We evaluated Vaadin against two servers with overlapping tools; this profile had the clearer scope statement.
We evaluated Vaadin against two servers with overlapping tools; this profile had the clearer scope statement.
showing 1-10 of 52
A sophisticated, hierarchically-aware Retrieval-Augmented Generation (RAG) system for Vaadin documentation that understands document structure, provides framework-specific filtering, and enables intelligent parent-child navigation through documentation sections.
This project provides an advanced RAG system with enhanced hybrid search that:
vaadin-documentation-services/
├── packages/
│ ├── core-types/ # Shared TypeScript interfaces
│ ├── 1-asciidoc-converter/ # AsciiDoc → Markdown + metadata extraction
│ ├── 2-embedding-generator/ # Markdown → Vector database with hierarchical chunking
│ └── mcp-server/ # MCP server with hierarchical navigation
├── package.json # Bun workspace configuration
└── PROJECT_PLAN.md # Complete project documentation
flowchart TD
subgraph "Step 1: Documentation Processing"
VaadinDocs["📚 Vaadin Docs<br/>(AsciiDoc)"]
Converter["🔄 AsciiDoc Converter<br/>• Framework detection<br/>• URL generation<br/>• Markdown output"]
Processor["⚡ Embedding Generator<br/>• Hierarchical chunking<br/>• Parent-child relationships<br/>• OpenAI embeddings"]
end
subgraph "Step 2: Agent Integration"
Pinecone["🗄️ Pinecone Vector DB<br/>• Rich metadata<br/>• Hierarchical relationships<br/>• Framework tags"]
MCP["🤖 MCP Server<br/>• search_vaadin_docs<br/>• get_full_document<br/>• Full document retrieval"]
IDEs["💻 IDE Assistants<br/>• Context-aware search<br/>• Hierarchical exploration<br/>• Framework-specific help"]
end
VaadinDocs --> Converter
Converter --> Processor
Processor --> Pinecone
Pinecone <--> MCP
MCP <--> IDEs
classDef processing fill:#e1f5fe,stroke:#01579b,stroke-width:2px
classDef storage fill:#f3e5f5,stroke:#4a148c,stroke-width:2px
classDef api fill:#e8f5e8,stroke:#2e7d32,stroke-width:2px
classDef agent fill:#fff3e0,stroke:#e65100,stroke-width:2px
class VaadinDocs,Converter,Processor processing
class Pinecone storage
class MCP api
class IDEs agent
# Clone and install dependencies
git clone https://github.com/vaadin/vaadin-documentation-services
cd vaadin-documentation-services
bun install
# Create .env file with your API keys
echo "OPENAI_API_KEY=your_openai_api_key" > .env
echo "PINECONE_API_KEY=your_pinecone_api_key" >> .env
echo "PINECONE_INDEX=your_pinecone_index" >> .env
# Convert AsciiDoc to Markdown with metadata
cd packages/1-asciidoc-converter
bun run convert
# Generate embeddings and populate vector database
cd ../2-embedding-generator
bun run generate
The MCP server is deployed and available remotely via HTTP transport at:
https://mcp.vaadin.com/
Configure your IDE assistant to use the Streamable HTTP transport:
import { StreamableHTTPClientTransport } from "@modelcontextprotocol/sdk/client/streamableHttp.js";
const transport = new StreamableHTTPClientTransport(
new URL("https://mcp.vaadin.com/")
);
packages/core-types/)Shared TypeScript interfaces used across all packages:
DocumentChunk: Core documentation chunk structureRetrievalResult: Search result with relevance scoringFramework: Type-safe framework definitionspackages/1-asciidoc-converter/)Converts Vaadin AsciiDoc documentation to Markdown with metadata:
cd packages/1-asciidoc-converter
bun run convert # Convert all documentation
bun run test # Run framework detection tests
packages/2-embedding-generator/)Creates vector embeddings with hierarchical relationships:
cd packages/2-embedding-generator
bun run generate # Generate embeddings from Markdown
bun run test # Run chunking and relationship tests
packages/mcp-server/)Model Context Protocol server for IDE assistant integration:
search_vaadin_docs and get_full_documentcd packages/mcp-server
bun run build # Build for distribution
bun run test # Run document-based tests
Available Tools:
search_vaadin_docs: Search with semantic and keyword matchingget_full_document: Retrieve complete documentation pagesget_vaadin_version: Get latest Vaadin version and release timestampEach package includes comprehensive test suites:
# Test individual packages
cd packages/1-asciidoc-converter && bun run test
cd packages/2-embedding-generator && bun run test
cd packages/mcp-server && bun run test
The MCP server is available at:
https://mcp.vaadin.com/https://mcp.vaadin.com/healthAutomated via GitHub Actions:
This project uses Bun workspaces for package management:
bun install # Install all dependencies
bun run build # Build all packages
bun run test # Test all packages
packages/core-types/packages/1-asciidoc-converter/ or packages/2-embedding-generator/packages/mcp-server/Prerequisites
Time Estimate
15-60 minutes depending on server complexity
Steps
Troubleshooting
✓ Do
✗ Don't
💡 Pro Tips
Architecture
Model Context Protocol standardizes how AI hosts (Claude, Cursor) communicate with external tools and data sources through server implementations.
Protocols
Compatibility
✓ Use when
Use when you need Claude to access external data, execute actions, or integrate with tools. Best for extending AI capabilities beyond conversation.
✗ Avoid when
Avoid when native integrations exist (use official APIs directly), for real-time critical systems, or when security/compliance requires zero external dependencies.