Best InfluxDB IoT Time Series MCP MCP Server Alternatives 2026

Updated June 2026

10 alternatives to InfluxDB IoT Time Series MCP for your AI workflow. Compare features, pricing, and compatibility.

🗄️

InfluxDB IoT Time Series MCP

Open Source

Query and write IoT time series data in InfluxDB — execute Flux and InfluxQL queries, write sensor measurements with tags and fields, manage retention policies and downsampling tasks, monitor continuous queries, and build real-time dashboards via API.

This MCP server is free and open-source. Check the GitHub repository for details.

View Details

Top InfluxDB IoT Time Series MCP Alternatives

#1🗄️MongoDB MCP ServerFreemium✓ Official

The official MongoDB MCP server, `mongodb-js/mongodb-mcp-server`, maintained by MongoDB. Searchers find it as the MongoDB MCP server or the Mongo MCP server; both names refer to this one project, and there is no separate short-form server. It is really two tool surfaces in one process. The database tools connect to any MongoDB deployment over a connection string in `MDB_MCP_CONNECTION_STRING` — `find`, `aggregate`, `explain`, `collection-schema`, `collection-indexes`, `create-index`, `count`, `export`, `mongodb-logs` and the write tools — or, if no connection string is set, the model calls the `connect` tool at runtime and passes the returned `connectionId` to later calls. The Atlas tools are a separate control plane: listing and creating clusters, database users, IP access-list entries, stream processing resources and the performance advisor. They authenticate with Atlas Service Account credentials (`MDB_MCP_API_CLIENT_ID` / `MDB_MCP_API_CLIENT_SECRET`), not with a connection string, and they simply do not register when those are unset — the usual cause of a 'the Atlas tools are missing' report. Two defaults are worth knowing before you point it at production. `readOnly` is false, so every write tool including `drop-database` is registered unless you pass `--readOnly`, which is why MongoDB's own README uses that flag in every example. And confirmation-required tools rely on MCP elicitation, so on a client that does not support elicitation they execute without prompting — `--readOnly` or `--disabledTools` is the actual boundary. Other guardrails: `indexCheck` rejects queries that would do a collection scan, server-side JavaScript (`$where`, `$function`, `$accumulator`) is disabled by default, results are capped at 100 documents and 16 MB per call, and `--dryRun` prints the resolved config and enabled tool list without starting the server. Requires Node 22.13.0 or later (Node 20 is deprecated); also published as the `mongodb/mongodb-mcp-server` Docker image. Runs over stdio by default, with an optional HTTP transport and a separate monitoring listener for `/health` and Prometheus `/metrics`.

The MCP server is free and open-source. MongoDB Atlas: Free tier (512MB). Shared: from $9/mo. Dedicated: from $57/mo. Enterprise: Custom.

🗄️ Database📦 npm
#2🗄️PostgreSQL MCP ServerOpen Source✓ Official

The PostgreSQL MCP server was the Model Context Protocol reference server for Postgres, and it is retired: the source now sits in modelcontextprotocol/servers-archived — a repository GitHub reports as archived, described as "Reference MCP servers that are no longer maintained" — and the npm package @modelcontextprotocol/server-postgres carries a deprecation notice reading "Package no longer supported." It still installs and still runs, which is why most third-party setup articles have not caught up. What it provides is deliberately small: a single tool, query, which executes read-only SQL inside a READ ONLY transaction, plus per-table schema information exposed as MCP resources at postgres://<host>/<table>/schema, with column names and data types discovered from database metadata. There is no index advice, no health check, no separate schema-listing tool, and no write mode. Install is npx @modelcontextprotocol/server-postgres with a postgres:// connection string as the argument. For active work against Postgres, the maintained alternative is Postgres MCP Pro (crystaldba/postgres-mcp), which exposes nine tools including index tuning against hypothetical indexes and a database health check, and has an explicit restricted access mode; if your database is hosted on Supabase or Neon, their platform servers add branching and logs that a raw Postgres connection cannot see. Reach for this archived server only when you want the smallest possible surface — one process, one read-only query tool, nothing else.

Free and open-source MCP server. PostgreSQL is free and open-source. Hosting costs depend on your infrastructure choice.

🗄️ Database📦 npm
#3🗄️SQLite MCP ServerOpen Source✓ Official

conversational read and write access to any SQLite database file, plus a running business-insights memo that accumulates what the analysis turns up. It is a Python server on PyPI, not a Node one, and the difference is the single most common reason setups fail here: `@modelcontextprotocol/server-sqlite` does not exist on npm, so every npx line for it 404s. The working invocation is `uvx mcp-server-sqlite --db-path /path/to/database.db` (PyPI package mcp-server-sqlite, v2025.4.25), or the equivalent `mcp/sqlite` Docker image with a volume mounted at /mcp. The --db-path argument is required and points at the .db file; the server will create it if it is not there yet. Six tools are exposed, deliberately split by risk: read_query for SELECT only, write_query for INSERT/UPDATE/DELETE, create_table for DDL, list_tables and describe-table for schema introspection, and append_insight, which writes into a memo://insights resource that updates live as findings accumulate — that resource, not the SQL tools, is what makes this server different from a generic database connector. It also ships an mcp-demo prompt that takes a business topic, generates a plausible schema and sample data, and walks through an analysis end to end, which is the fastest way to see the memo behaviour without wiring up real data. One caveat to weigh before adopting it: this is an Anthropic reference implementation that now lives in modelcontextprotocol/servers-archived, archived on 2025-05-28. The published package still installs and runs, but it is frozen — no new features, no dependency updates, and no security patches.

Free and open-source MCP server. SQLite is public domain — completely free with no external service costs.

🗄️ Database📦 pip
#4🗄️Redis MCP ServerFreemium✓ Official

The Redis MCP Server (redis/mcp-redis) is Redis's own natural-language interface for agentic applications, letting an AI client read and write Redis data over the Model Context Protocol. Note which one you install: the server most tutorials still point at is Anthropic's reference implementation, which now lives in modelcontextprotocol/servers-archived, and its npm package @modelcontextprotocol/server-redis is explicitly marked "Package no longer supported" with a last publish of 2025-04-25. The maintained server is a Python package instead, run with uvx --from redis-mcp-server@latest, and it covers far more of Redis than the reference one did: string, hash, list, set and sorted-set tools; JSON document tools; pub/sub with stateful channel and pattern subscriptions; Streams tools including consumer-group create, read, acknowledge and destroy; vector index management and vector search through the query engine; a docs search tool; and a server-management tool for database info. Connection is a redis:// or rediss:// URL passed as --url, or the REDIS_HOST/REDIS_PORT/REDIS_PWD/REDIS_SSL environment variables, with Redis Cluster mode behind REDIS_CLUSTER_MODE and EntraID service-principal, managed-identity and default-credential auth flows for Azure Managed Redis. There is no --read-only flag: the documented way to stop an agent writing is a Redis ACL user (ACL SETUSER readonlyuser on >pw ~* +@read -@write). Ships as a PyPI package, a GitHub install via uvx, and an official mcp/redis Docker image; stdio transport only.

The MCP server is free and open-source. Redis Cloud: Free tier (30MB). Essentials: from $7/mo. Pro: Custom pricing. Self-hosted Redis is free.

🗄️ Database📦 pip
#5🗄️Supabase MCP ServerFreemium✓ Official

Supabase MCP Server connects Cursor, Claude Code, Claude Desktop, Windsurf and other MCP clients to a Supabase project, and the first thing to know is that the personal access token setup most guides still describe is gone. Supabase now runs a hosted server at https://mcp.supabase.com/mcp using OAuth 2.1 with dynamic client registration — you add the URL, your client opens a browser, you pick the organization, and there is no PAT to mint or rotate. For Claude Code that is `claude mcp add --scope project --transport http supabase "https://mcp.supabase.com/mcp"` followed by `/mcp` in a plain terminal (not the IDE extension) to run the auth flow. Three URL query parameters do the real configuration work: `read_only=true` runs every statement as a read-only Postgres role, `project_ref=<id>` scopes the server to one project and drops the account-management tools entirely, and `features=` selects the tool groups. Those groups are database (list_tables, list_extensions, list_migrations, apply_migration, execute_sql), debugging (get_logs across API/Postgres/Edge Functions/Auth/Storage/Realtime, plus get_advisors for security and performance findings), development (get_project_url, get_publishable_keys, generate_typescript_types), Edge Functions (list, get, deploy), account management, docs search, experimental branching on paid plans, and storage — storage is the one group disabled by default. Running Supabase locally with the CLI exposes a reduced server at http://localhost:54321/mcp with no OAuth; self-hosted installs are similar. The npm package `@supabase/mcp-server-supabase` still exists for stdio clients and also exports `createToolSchemas()` so Vercel AI SDK users get typed tool inputs and outputs. Read Supabase's security best-practices page before pointing this at anything with production data — the mutating tools are real.

The MCP server is free and open-source. Supabase: Free tier (500MB, 50K monthly active users). Pro: $25/mo. Team: $599/mo. Enterprise: Custom.

🗄️ Database📦 remote
#6🗄️Neon MCP ServerFreemium✓ Official

The Neon MCP Server (neondatabase/mcp-server-neon) is Neon's official, open-source bridge between natural language and the Neon serverless Postgres platform. It translates conversational requests into Neon API and SQL calls, letting Claude, Cursor, VS Code, and other MCP clients create projects and branches, run queries, inspect schemas, and perform database migrations without hand-writing SQL or hitting the API directly. A standout capability is migration support built on Neon's branching: the server can spin up a branch, apply and test a schema change there, and only then merge it — so an assistant can safely run "add a created_at column to the users table" against an isolated copy first. The easiest setup is the remote hosted server at https://mcp.neon.tech/mcp, which supports both OAuth (no API key to manage) and API-key auth via the Authorization header; run `npx neon@latest init` for one-command configuration of Cursor, VS Code (Copilot), and Claude Code, or `npx add-mcp https://mcp.neon.tech/mcp` to register it across all detected editors. Requires Node.js 18+ and a free Neon account; if IP Allow is enabled, whitelist the mcp.neon.tech static IPs. Neon explicitly scopes this server to local development and IDE workflows — its README warns against production use since natural-language commands can execute powerful, irreversible database operations, so always review actions before authorizing them.

The MCP server is free and open-source. Neon: Free tier (0.5 GiB storage). Launch: $19/mo. Scale: $69/mo. Business: $700/mo.

🗄️ Database📦 npm
#7🗄️ClickHouse MCP ServerFreemium✓ Official

ClickHouse MCP Server is ClickHouse's official MCP server (ClickHouse/mcp-clickhouse) that connects Claude, Cursor, and other MCP clients to a ClickHouse cluster for fast analytical querying over natural language. Its primary tool, run_query, executes arbitrary SQL against your cluster in read-only mode by default (CLICKHOUSE_ALLOW_WRITE_ACCESS=false) so an AI assistant can explore tables, aggregate billions of rows, and answer analytics questions without risk of mutating data — writes can be enabled explicitly when needed. Companion tools list databases and tables and return schema metadata (including the full create_table_query, with an option to omit per-column detail for lighter responses). A second tool set embeds chDB, ClickHouse's in-process engine, via run_chdb_select_query, letting the assistant query files, URLs, and external databases directly without an ETL step (enabled with the optional mcp-clickhouse[chdb] extra). Destructive statements are gated a second time: even with writes enabled, DROP and TRUNCATE require CLICKHOUSE_ALLOW_DROP=true as well. The server supports both stdio and HTTP/SSE transports; on HTTP/SSE authentication is required rather than optional — startup fails unless a static bearer token (CLICKHOUSE_MCP_AUTH_TOKEN), a FastMCP OAuth/OIDC provider (Azure Entra, Google, GitHub, WorkOS via FASTMCP_SERVER_AUTH), or an explicit local-development opt-out (CLICKHOUSE_MCP_AUTH_DISABLED) is configured. Connection is configured through CLICKHOUSE_HOST, CLICKHOUSE_PORT, CLICKHOUSE_USER, and CLICKHOUSE_PASSWORD, with ClickHouse Cloud, self-hosted, and the public SQL playground all supported.

The MCP server is free and open-source. ClickHouse Cloud: Free trial available. Pay-as-you-go pricing. Self-hosted ClickHouse is free and open-source.

🗄️ Database📊 Analytics📦 pip
#8🗄️Neo4jFreemium

Neo4j graph database server (schema + read/write-cypher) and graph database backed memory.

The MCP server is free and open-source. Neo4j Aura: Free tier available. Professional: from $65/mo. Enterprise: Custom pricing. Community edition is free.

🗄️ Database📦 pip
#9🗄️Milvus MCP ServerOpen Source✓ Official

The Milvus MCP Server (zilliztech/mcp-server-milvus) is Zilliz's official Model Context Protocol bridge into Milvus, the open-source vector database used for RAG pipelines, semantic search, and large-scale embedding retrieval. It gives an AI agent direct, structured access to a running Milvus instance rather than requiring hand-written client code: milvus_vector_search runs similarity search over embeddings, milvus_text_search performs full-text search, and milvus_hybrid_search and milvus_text_similarity_search combine both approaches (the latter requires Milvus 2.6.0+ with a server-side embedding function configured). Beyond search, the server covers full collection lifecycle management — milvus_list_collections, milvus_create_collection (quick-setup or custom schema), milvus_get_collection_info, milvus_load_collection/milvus_release_collection for memory management, plus milvus_query for filter-expression lookups, milvus_insert_data, and milvus_delete_entities for direct data mutation. It supports three transport modes: stdio (default, for local Claude Desktop/Cursor use), SSE for multi-client HTTP access, and Streamable HTTP with an optional stateless flag for production deployments without session persistence. Install with `uv run src/mcp_server_milvus/server.py --milvus-uri http://localhost:19530` after cloning the repo, or point it at any local or remote Milvus cluster by URI — Python 3.10+ and the uv package manager are the only prerequisites. Works with Claude Desktop, Cursor, and any other MCP-compliant client.

Free and open-source MCP server. Milvus is open-source. Zilliz Cloud (managed): Free tier available, paid plans for production use.

🗄️ Database📦 pip
#10🗄️ChromaOpen Source

Embeddings, vector search, document storage, and full-text search with the open-source AI application database.

Free and open-source MCP server. Chroma is open-source and free to self-host. Chroma Cloud currently in development.

🗄️ Database📦 pip

Frequently Asked Questions

What are the best alternatives to InfluxDB IoT Time Series MCP MCP Server?

The top alternatives to InfluxDB IoT Time Series MCP MCP Server in 2026 include MongoDB MCP Server, PostgreSQL MCP Server, SQLite MCP Server, Redis MCP Server, Supabase MCP Server. Each offers similar functionality in the Database category with different features, pricing, and compatibility.

Is there a free alternative to InfluxDB IoT Time Series MCP MCP Server?

Yes, free alternatives to InfluxDB IoT Time Series MCP include MongoDB MCP Server, PostgreSQL MCP Server, SQLite MCP Server. These offer free tiers or are completely open-source.

How do I choose between InfluxDB IoT Time Series MCP and its alternatives?

When choosing between InfluxDB IoT Time Series MCP and alternatives, consider: (1) Pricing — compare free tiers and paid plans, (2) Features — what specific capabilities you need, (3) Compatibility — which AI assistants (Claude, Cursor, VS Code) are supported, (4) Installation — npm, pip, docker, or other install methods.

Can I use multiple MCP servers at the same time?

Yes! MCP (Model Context Protocol) supports running multiple servers simultaneously. You can use InfluxDB IoT Time Series MCP alongside other MCP servers to extend your AI assistant's capabilities across different services and tools.

Related Pages