How to Use the Censys MCP in LlamaIndex
Turn raw Censys data into a searchable knowledge base with your LlamaIndex RAG apps.
Works with every AI agent you already use
…and any MCP-compatible client
Connect Censys MCP to LlamaIndex
Create your Vinkius account to connect Censys to LlamaIndex and route execution through our secure gateway. The platform manages server hosting, runtime updates, and security layers. Configuration requires no manual server provisioning.
Build a Queryable Host Inventory
Don't just run a scan. Build an index. Use the `search_hosts` and `get_host` tools to feed data directly into a LlamaIndex vector store. Every IP, port, and service banner becomes a searchable piece of knowledge about your network. Once it's indexed, you can ask natural language questions. 'Which of our servers are still running an old version of nginx?' LlamaIndex finds the answer from the Censys data you've already collected. This MCP Server gives you the live data; LlamaIndex makes it part of your long-term memory.
Index Your Certificate Landscape
Your certificate inventory is now a queryable database. Point the `search_certificates` tool at LlamaIndex to ingest every certificate you own. The tool's output—subjects, issuers, and validity dates—is indexed automatically. This means you can ask 'Show me all certificates expiring in the next 30 days' and get a straight answer grounded in real data. You can even follow up by using `get_certificate_hosts` to find the exact machines that need attention, adding that context back into your index.
Ask Questions About Infrastructure Trends
The `aggregate_hosts` tool is perfect for high-level analysis. You can group hosts by country, by open port, or by operating system. Instead of just getting a list, you get a summary of your global footprint. Feed these aggregations into LlamaIndex. Now you can ask things like, 'What are the top 5 countries where our assets are located?' or 'What's the most common port we have open to the internet?' LlamaIndex retrieves the answers from the indexed Censys aggregation data, giving you instant business intelligence.
Set up Censys MCP in LlamaIndex
Prerequisites
- Python 3.10+ installed
-
llama-index-tools-mcppackage - Active Vinkius subscription with a valid endpoint token
- 1
Install dependencies
Run
pip install llama-index-tools-mcp llama-index-llms-openai. The MCP tools package providesBasicMCPClientandMcpToolSpec. - 2
Connect with BasicMCPClient
Point
BasicMCPClientto your Vinkius endpoint URL. Replace[YOUR_TOKEN_HERE]with your token from cloud.vinkius.com. Supports SSE and Streamable HTTP transports. - 3
Convert to LlamaIndex tools
Call
mcp_tool_spec.to_tool_list_async()to convert all Censys MCP tools into nativeFunctionToolobjects that any LlamaIndex agent can use. - 4
Run with any LLM
Create a
FunctionAgentwith the tools and your preferred LLM. SwapOpenAIforAnthropic,Gemini, or any LlamaIndex-supported provider.
from llama_index.tools.mcp import BasicMCPClient, McpToolSpec
from llama_index.core.agent.workflow import FunctionAgent
from llama_index.llms.openai import OpenAI
# Connect to the MCP
mcp_client = BasicMCPClient(
"https://edge.vinkius.com/[YOUR_TOKEN_HERE]/mcp"
)
mcp_tool_spec = McpToolSpec(client=mcp_client)
# Convert MCP tools to LlamaIndex tools
tools = await mcp_tool_spec.to_tool_list_async()
# Create and run the agent
agent = FunctionAgent(
tools=tools,
llm=OpenAI(model="gpt-4o"),
system_prompt="You have access to Censys tools.",
)
response = await agent.run("List recent Censys data") Independent Platform Disclaimer: Vinkius is an independent platform and is not affiliated with, endorsed by, sponsored by, verified by, or otherwise authorized by Censys. All third-party trademarks, logos, and brand names are the property of their respective owners. Their use on this website is strictly for informational purposes to identify service compatibility and interoperability.
Why Choose Vinkius
Vinkius connects your tools to AI with real-time monitoring and automatic cost savings — all from one dashboard.
Real-time monitoring
Live
visibility into every interaction
Connect your favorite tools to your AI and see exactly what's happening — every request, every response, in real time.
Built-in savings
60%
lower AI costs
Vinkius compresses data between your apps and your AI automatically. Lower bills every month — no configuration required.
Single dashboard
One
place for every integration
Every tool your AI connects to, managed from a single screen. One account, complete control.
Common questions about Censys MCP in LlamaIndex
Use it with your favorite AI tools
Connect this server to Cursor, Claude, VS Code, and more.
Start using the Censys MCP today
We host it, we monitor it, we maintain it. You just paste one token.