MCP servers
MCP servers package Model Context Protocol server definitions so the client can launch and talk to them. Use them to give AI clients structured access to internal APIs, databases, and custom tools.
Directory layout
hi-dylan/
└── MCP.md---
name: hi-dylan
description: This MCP server returns the greeting "Hi Dylan!" when invoked.
type: stdio
command: node
args: ["server.js"]
env:
NODE_ENV: production
---{
"name": "hi-dylan",
"type": "stdio",
"command": "node",
"args": ["server.js"],
"env": {
"NODE_ENV": "production"
}
}Installing an MCP server
Credentials
Experimental status
Client compatibility
Discovering servers
Last updated
Was this helpful?