Using MCP Servers with AI Coding
Last updated
MCP (Model Context Protocol) lets your AI Coding agent connect to external tools and data sources — for example, web lookups, reading/writing files, querying a database, or working with Jira, GitHub… This is how you "extend" an agent's capabilities, which is different from attaching a model.
An easy way to tell them apart:
Attaching a model (GLM 5.2) = giving the agent a brain to think with → see Getting Started with AI Coding.
Attaching an MCP server = giving the agent extra hands to work with external systems (the topic of this page).
The two are independent: you can use GLM 5.2 without MCP, and vice versa.
An MCP server is a small program that gives an agent a set of "tools". When you ask the agent to do something that needs external data, the agent automatically calls the matching tool through that MCP server. There are 2 common types:
Local (stdio)
Right on your machine
reading files, running commands, accessing an internal DB
Remote (HTTP/SSE)
On a remote server
enterprise connectors (Jira, GitHub, internal search)
You've attached the GLM 5.2 model to your agent following Getting Started with AI Coding.
Details of the MCP server you want to add (the run command if local; or the URL + token if remote).
Enable Developer Mode (same as when configuring the model): Help → Troubleshooting → Enable Developer Mode.
Go to Developer → configure the MCP server (Local MCP) and declare the server: name, run command (local) or URL (remote).
Restart the app. During your session, the agent will automatically use tools from the MCP server when needed.
Quickly add an MCP server with:
List servers you've added:
If you're rolling out MCP at an organizational scale (controlling which servers are allowed, permissions per tool, routing through a shared gateway), see AgentBase's MCP Governance section:
If you've followed the steps and it's still not working, feel free to contact GreenNode Customer Support:
Email: support@greennode.ai
Hotline: 19001549
Help center: helpdesk.greennode.ai
Thank you for using GreenNode's services.
Last updated
claude mcp add <server-name> -- <server-run-command>claude mcp list
