惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

月光博客
月光博客
Martin Fowler
Martin Fowler
Last Week in AI
Last Week in AI
罗磊的独立博客
阮一峰的网络日志
阮一峰的网络日志
博客园 - 【当耐特】
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - 三生石上(FineUI控件)
S
SegmentFault 最新的问题
V
Visual Studio Blog
Hugging Face - Blog
Hugging Face - Blog
雷峰网
雷峰网
博客园_首页
人人都是产品经理
人人都是产品经理
量子位
美团技术团队
The Cloudflare Blog
小众软件
小众软件
WordPress大学
WordPress大学
有赞技术团队
有赞技术团队
M
MIT News - Artificial intelligence
Microsoft Security Blog
Microsoft Security Blog
D
DataBreaches.Net
博客园 - Franky

Latest from TechRadar in Pro

VodafoneThree gets Ofcom approval to bring satellite connectivity to your smartphone Is this the tipping point for AI at work? New Gallup survey finds half of all US employees now use it in some way 'Every Apple user needs to know about this nasty scam': Fake warnings tell users their iCloud data will be… 'Makes it even more disappointing': Microsoft backs fossil fuel big time with $7 billion deal in race for AI… 'Maybe it’s not science fiction': Solar panels are causing rainwater to fall in one of the driest places… Maine becomes first US state to pass data centre construction ban Dozens of WordPress plugins hijacked to target thousands of sites Drone-killing laser weapons greenlit for use in US airspace – FAA and Defense Department say high-energy weapons are ‘ready to protect all air travelers from illicit drone use’ despite airspace restrictions and friendly-fire incidents 'We are currently being extorted' — crypto giant Kraken says it is facing extortion attack, here's… I tried 7 free MTD software – now I've ranked my top picks as a freelancer Jackery McGraw Hill becomes latest to see its Salesforce data hacked Looking for a new PC? Now might be great time to upgrade, as Gartner figures claim shipments are rising — while… The new engineering playbook: how AI design copilots are reshaping product development Farewell Surface Hub — Microsoft kills off its super-sized touchscreen displays, but you might still be able to get one if you act fast 'We have no interest in patient data in the UK': Palantir UK head defends record as criticisms rise Amazon’s new AI Bio Discovery tool can provide ‘every researcher’ with ‘lab-in-the-loop drug discovery’ – 40+ AI biology models can filter 300,000 novel antibody candidates down to the top results for testing in just weeks Over 100 Chrome Web Store extensions found stealing user data from thousands of accounts Europe wants tech sovereignty but is this realistic? Enterprise AI governance cannot live in a prompt. So where is the safety net? Why 2026 is the year of flexibility without friction: solving the multi-platform crisis OpenAI reveals its Mythos rival designed for cybersecurity pros When cyberattacks are inevitable, recovery becomes the strategy Closing the cloud complexity gap LaLiga uses AI to fight illegal streaming that costs its clubs $800m a year Intel and Google expand long-term chip partnership to power AI systems 'Chatbots respond not just to what you ask, but how you ask it': Report finds AI agents might be sucking up to… 'Smartphones have physical limitations': Report explains why AI is kickstarting a billion-dollar hardware arms… 'I’m pretty sure actually we really do not need to work for five days' Zoom CEO calls for end of traditional work schedules — says 3-day working week should become the norm 'It's more common than you think': Experts reveal how hackers are trying to hijack your inbox with these…
How to reliably connect LLMs to real-world data and systems
Dominik Tomi · 2026-04-30 · via Latest from TechRadar in Pro

The model context protocol (MCP), an open-source standard introduced by Anthropic in late 2024, standardizes how large language models (LLMs) connect to external tools, databases, and data sources.

It enables Claude or Cursor to easily interact with files, APIs, and databases without needing bespoke, hard-coded integrations.

CEO, Memgraph.

This is why MCP is often compared to a “USB-C port for AI.”

Article continues below

Unlike USB-C, however, it carries risks, especially around whether the model truly understands what it’s querying and what the underlying data represents.

Without careful planning around this aspect of the protocol, AI projects can fall short of expectations. Let’s consider why.

The benefits of giving LLM tools access

MCP provides a far more effective way for LLMs to interact with external tools, APIs, and data sources. Instead of manually orchestrating multi-step pipelines—retrieving data, formatting it, injecting it into prompts, and parsing outputs—AI teams can expose capabilities directly to the model, allowing the LLM to decide what to use, when, and how to combine results.

That moves AI from static prompt-response loops toward more dynamic, agent-like behavior. Instead of hardcoding workflows, teams define tools and the model orchestrates them—querying databases, triggering workflows like sending emails or updating systems—choosing the right tools and sequencing them based on the task.

Sign up to the TechRadar Pro newsletter to get all the top news, opinion, features and guidance your business needs to succeed!

Both in theory and in practice, this approach reduces engineering overhead and increases flexibility. Model providers, frameworks, and platforms are increasingly supporting MCP-style interactions, and many developer tools now assume tool-based orchestration.

However, MCP introduces new challenges, notably tool overload. The temptation is to give the model access to as many tools as possible, assuming more capability should mean better outcomes, but that’s not always the case.

Just as giving an LLM too many options can increase the risk of hallucination, the same dynamic appears in deployment. As the number of available tools grows, the model’s ability to reliably select the correct one decreases, tempting it to pick the wrong one or misuse them, producing unintended results.

In this setting, instead of hallucinating text, the model now hallucinates actions.

You can have too much of a good thing

So, what’s the path forward? Our experience shows progress comes from a minimal, tightly scoped set of tools tailored to the specific task. Complex workflows should also be decomposed into smaller steps, each with a clearly defined set of capabilities.

Next is context. An LLM may know how to use a tool, but not what to do with it. For example, a model might generate syntactically correct queries, but without understanding the underlying schema or data relationships, those queries may end up meaningless or incomplete.

That’s the equivalent of handing someone access to a vast filing system without an index. Without the structured knowledge needed to interpret data correctly or to decide which tool is appropriate, even well-designed MCP systems can behave unpredictably.

I am deliberately not discussing security issues, but they are far from trivial: think unauthorized data access, prompt injections that trigger unintended actions, and more. The bottom line is you need to know which tools your AI app used, why it chose them, and what actions were executed as a result.

An answer to MCP’s shortcomings: GraphRAG

It’s clear that as helpful as it is, MCP is not a complete solution. It serves as an enabling layer, but does not structure knowledge, provide reliable context, or guide decision-making. Architectural choices are critical: improving the quality and structure of the context provided to the model makes a significant difference.

This is where approaches like retrieval-augmented generation (RAG) helps; and increasingly, where graph-based approaches are gaining attention, giving rise to GraphRAG, as first suggested by Microsoft.

Traditional RAG systems use vector search to retrieve relevant information. This approach helps reduce hallucinations but can struggle with complex relationships or implicit structures in the data. GraphRAG, however, extends this idea by introducing a knowledge graph layer, which encodes entities, relationships, and rules in a structured form.

This gives the model a clearer understanding of how data is connected and what it represents. In the context of MCP, this improves tool selection. When the LLM has access to structured knowledge, it can determine which tools are relevant to a given task, and it enables more controlled execution, guiding the model toward valid actions and away from risky or nonsensical ones.

For example, a graph can encode constraints such as permissions, dependencies, or business logic. This provides a form of guardrail that complements MCP’s action layer. The result is a more balanced system: MCP handles interaction and execution, RAG supplies relevant context, and the knowledge graph adds clarity, constraints, and reasoning support.

This combination helps reduce hallucination and misuse, two of the biggest risks in MCP-driven systems. By integrating GraphRAG with MCP-based workflows, developers can create systems in which models are not only capable of acting but are also better informed about when and how to act—bringing us closer to practical AI that is both powerful and reliable.

We've listed over 70 of the best AI tools.

This article was produced as part of TechRadar Pro Perspectives, our channel to feature the best and brightest minds in the technology industry today.

The views expressed here are those of the author and are not necessarily those of TechRadarPro or Future plc. If you are interested in contributing find out more here: https://www.techradar.com/pro/perspectives-how-to-submit

CEO, Memgraph.