Overview
AI MCP Portal is a web-based platform designed for the aimcp community to present relevant information in a structured and user-friendly manner.
To use the AI MCP Portal, simply visit the website at AI MCP Portal and navigate through the various sections to access the information you need.
- User-friendly interface for easy navigation - Comprehensive collection of resources related to aimcp - Regular updates to ensure information is current
- Accessing documentation and resources for aimcp projects
- Finding community support and discussions
- Staying updated with the latest developments in the aimcp ecosystem
Add to your AI client
Use these steps to connect AI MCP Portal 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": {
"website-aimcp": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-website-aimcp"
]
}
}
}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": {
"website-aimcp": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-website-aimcp"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"website-aimcp": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-website-aimcp"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"website-aimcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-website-aimcp"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"website-aimcp": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-website-aimcp"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"website-aimcp": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-website-aimcp"
]
}
}
}FAQ
What is aimcp?
aimcp is a community-driven project focused on AI and machine learning.
How often is the portal updated?
The portal is updated regularly to provide the latest information and resources.
Can I contribute to the AI MCP Portal?
Yes! Contributions are welcome, and you can find guidelines on the portal.