Neovim's AI plugin ecosystem is growing fast. Plugins like avante.nvim and codecompanion.nvim support MCP, letting your AI assistant call external tools during coding sessions. Connect a DataFaucet MCP server and your Neovim AI can query your CRM, check deployment status, or pull analytics data without leaving the editor.
avante.nvim supports MCP servers via its configuration. Add your server in your plugin config:
require("avante").setup({
mcp = {
servers = {
["my-crm"] = {
url = "https://your-server.datafaucet.dev/sse",
headers = {
Authorization = "Bearer your-api-key",
},
},
},
},
})After restarting Neovim, avante will discover the tools from your MCP server and make them available in chat.
codecompanion.nvim also supports MCP tool connections:
require("codecompanion").setup({
adapters = {
mcp_servers = {
{
name = "my-crm",
url = "https://your-server.datafaucet.dev/sse",
headers = {
["Authorization"] = "Bearer your-api-key",
},
},
},
},
})For a plugin-agnostic approach, mcphub.nvim provides a standalone MCP client for Neovim:
require("mcphub").setup({
servers = {
{
name = "my-crm",
transport = "sse",
url = "https://your-server.datafaucet.dev/sse",
headers = { Authorization = "Bearer your-api-key" },
},
},
})Once connected, ask your AI assistant to use the tools:
> "Use my-crm to show deals closing this quarter"
The assistant calls your MCP server, gets structured data back, and presents it inline in the chat buffer.
Add as many servers as you need:
servers = {
["crm"] = {
url = "https://crm.datafaucet.dev/sse",
headers = { Authorization = "Bearer key-1" },
},
["monitoring"] = {
url = "https://monitoring.datafaucet.dev/sse",
headers = { Authorization = "Bearer key-2" },
},
["tickets"] = {
url = "https://tickets.datafaucet.dev/sse",
headers = { Authorization = "Bearer key-3" },
},
}Popular choices for developers using Neovim with MCP:
Create your Neovim MCP server in 60 seconds.
Try with Neovim →{
"mcpServers": {
"neovim": {
"url": "https://datafaucet.dev/api/mcp/YOUR_SERVER_ID/sse"
}
}
}Replace YOUR_SERVER_ID with the ID from your DataFaucet dashboard after creating your Neovim server.
Point DataFaucet at Neovim and get a working server in 60 seconds.
Create Neovim server free →After creating, add to Claude Desktop:
"neovim": {
"url": "https://datafaucet.dev/api/mcp/YOUR_ID/sse"
}Free plan includes 3 servers. Upgrade to Pro for unlimited →
Pre-built MCP server templates for GitHub, Slack, Notion, HubSpot, and more. Deploy in one click without writing API code.
Add MCP servers to Warp terminal's AI features. Configure tool access so Warp Agent can query external APIs and dashboards.
Compare MCP servers and browser extensions for AI automation. When each approach works, their trade-offs, and which to use for different tasks.
See how DataFaucet compares
Point at any URL. Get a working MCP server in 60 seconds. No API docs needed.
Works with ChatGPT, Claude, Cursor, Copilot, Codex, JetBrains, and any MCP client
Or try 103 free tools instantly:
claude mcp add datafaucet-sandbox https://datafaucet.dev/api/sandboxGet notified when we add more AI integrations
Join 500+ builders. New templates, guides, and MCP tips. No spam.