Mcp Agent Servers
Overview
Mcp Agent Servers is a web application built using Next.js, designed to serve as a template for developing server-side rendered applications.
To use Mcp Agent Servers, clone the repository and run the development server using npm, yarn, or other package managers. Open your browser and navigate to http://localhost:3000 to view the application.
- Built with Next.js for server-side rendering and static site generation. - Supports automatic font optimization with next/font. - Easy deployment on Vercel platform.
- Developing server-rendered web applications.
- Creating static websites with dynamic content.
- Learning and experimenting with Next.js features.
Add to your AI client
Use these steps to connect Mcp Agent Servers in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"mcp-agent-servers-egor-baranov": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-agent-servers-egor-baranov"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"mcp-agent-servers-egor-baranov": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-agent-servers-egor-baranov"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mcp-agent-servers-egor-baranov": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-agent-servers-egor-baranov"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"mcp-agent-servers-egor-baranov": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-agent-servers-egor-baranov"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-agent-servers-egor-baranov": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-agent-servers-egor-baranov"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mcp-agent-servers-egor-baranov": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-agent-servers-egor-baranov"
]
}
}
}FAQ
Is Mcp Agent Servers free to use?
Yes! Mcp Agent Servers is open-source and free to use.
What technologies does Mcp Agent Servers use?
It is built using Next.js and TypeScript.
How can I deploy my application?
You can deploy your application easily using the Vercel platform.