MCP (Model Context Protocol) is a standardized protocol that enables AI assistants to access external data sources and tools. Pohon UI provides an MCP server that allows AI assistants like Claude Code, Cursor, and Windsurf to access component information, source code, and usage examples directly.
The MCP server provides structured access to our component library, making it easy for AI tools to understand and assist with Pohon UI development.
The Akar MCP server provides the following resources for discovery:
resource://akar/components: Browse all available components with categoriesresource://akar/composables: Browse all available composables with categoriesresource://akar/examples: Browse all available code examplesresource://akar/documentation-pages: Browse all available documentation pagesYou're able to access these resources with tools like Claude Code by using @.
The Akar MCP server provides the following tools organized by category:
list_components: Lists all available Akar & Pohon UI components with their categories and basic informationlist_composables: Lists all available Akar & Pohon UI composables with their categories and basic informationget_component: Retrieves component documentation and detailsget_component_metadata: Retrieves detailed metadata for a component including props, slots, and eventssearch_components_by_category: Searches components by category or text filterlist_documentation_pages: Lists all documentation pagesget_documentation_page: Retrieves documentation page content by URL pathlist_getting_started_guides: Lists all getting started guides and installation instructionslist_examples: Lists all available UI examples and code demonstrationsget_example: Retrieves specific UI example implementation code and detailsThe Akar MCP server provides guided prompts for common workflows:
find_component_for_usecase: Find the best component for your specific use caseimplement_component_with_props: Generate complete component implementation with proper propsYou're able to access these resources with tools like Claude Code by using /.
The Akar MCP server uses HTTP transport and can be configured in different AI assistants.
Follow these steps to set up Akar as a connector within ChatGPT:
Akarhttps://akar.vinicunca.dev/mcpNoneThe Akar connector will appear in the composer's "Developer mode" tool later during conversations.
Add the server using the CLI command:
claude mcp add --transport http akar https://akar.vinicunca.dev/mcp
Or manually create/update .cursor/mcp.json in your project root:
{
"mcpServers": {
"akar": {
"type": "http",
"url": "https://akar.vinicunca.dev/mcp"
}
}
}
Akarhttps://akar.vinicunca.dev/mcp.vscode folder or create one if it doesn't existmcp.json file with the following configuration:{
"servers": {
"akar": {
"type": "http",
"url": "https://akar.vinicunca.dev/mcp"
}
}
}
{
"mcpServers": {
"akar": {
"type": "http",
"url": "https://akar.vinicunca.dev/mcp"
}
}
}
{
"context_servers": {
"akar": {
"source": "custom",
"command": "npx",
"args": ["mcp-remote", "https://akar.vinicunca.dev/mcp"],
"env": {}
}
}
}
opencode.json{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"akar": {
"type": "remote",
"url": "https://akar.vinicunca.dev/mcp",
"enabled": true
}
}
}
Once configured, you can ask your AI assistant questions like:
The AI assistant will use the MCP server to fetch structured JSON data and provide guided assistance for Akar & Pohon UI during development.