Alper Hoca ile MCP Server
Next.js ile oluşturulmuş MCP Server projesi
Overview
Alper Hoca ile MCP Server is a web application project built using Next.js, designed to serve as a modern MCP (Multi-Channel Platform) server.
To run the project locally, follow these steps: bash # Install dependencies npm install # Start the development server npm run dev Then, open your browser and navigate to http://localhost:3000 to view the application.
- Built with Next.js 14 for a modern web application experience - Styled using Tailwind CSS for responsive design - TypeScript support for enhanced development experience
- Developing modern web applications with a robust backend.
- Creating responsive user interfaces using Tailwind CSS.
- Leveraging TypeScript for type safety in web development.
Add to your AI client
Use these steps to connect Alper Hoca ile MCP Server 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": {
"next-mcp-server-altudev": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-next-mcp-server-altudev"
]
}
}
}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": {
"next-mcp-server-altudev": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-next-mcp-server-altudev"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"next-mcp-server-altudev": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-next-mcp-server-altudev"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"next-mcp-server-altudev": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-next-mcp-server-altudev"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"next-mcp-server-altudev": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-next-mcp-server-altudev"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"next-mcp-server-altudev": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-next-mcp-server-altudev"
]
}
}
}FAQ
What technologies are used in this project?
The project uses Next.js, React, Tailwind CSS, and TypeScript.
Is there a demo available?
You can run the project locally by following the setup instructions provided.
Can I contribute to this project?
Yes! Contributions are welcome, and you can find more information in the project's GitHub repository.