NonDev Apps

Bonus 04 of 07

What MCP is and how to inspect or add one connection safely

Goal: MCP is how Claude Code talks to external tools. Today you learn the real commands, inspect what is already connected, and practice with one safe read-only connection instead of guessing.

What to do

01

Understand MCP in plain English

MCP gives Claude Code access to tools outside your project folder. That might mean documentation, GitHub, databases, or other services. Every MCP connection expands what Claude can read or do, so pause and ask yourself what access you are actually giving it before you connect anything.

02

Inspect your current MCP setup

Use the real inspection screens instead of asking Claude to guess. In Claude Code, type `/mcp`. In a regular terminal, run this command:

claude mcp list
03

Practice with one safe, read-only MCP server

If you want to practice the mechanics safely, add a read-only documentation server instead of a write-capable work server. That gives you practice without giving Claude power over your project. Run this in a normal terminal:

claude mcp add --transport http openaiDeveloperDocs https://developers.openai.com/mcp
04

Verify the connection in both places

After adding the server, check it in the CLI and in Claude Code. Run `claude mcp list` again and reopen `/mcp` inside Claude Code. Then ask Claude one simple docs question so you can confirm the server is actually usable.

Look up the request schema for Responses API tools in the OpenAI developer docs and summarize the required fields.
05

Apply the trust rule before any future server

Only connect official servers from sources you trust, and only when you need that access right now. Official docs, official provider docs, and a clear understanding of what data the server can read or actions it can take are the minimum bar. If you cannot explain what a server can access, you are not ready to connect it.

Expected result

You inspected your current MCP setup with /mcp and claude mcp list, added one safe read-only server as a practice connection, verified it, and learned the trust rule for any future server.

Key takeaway

  • MCP is not magic. It is extra access. Inspect it with the real commands, start with a read-only official server, and add stronger connections only when you can explain exactly what they expose.
What MCP is and how to inspect or add one... — NonDev Apps