Connect your first API to AI assistants in under 10 minutes
Connect any REST API using OpenAPI spec or manual configuration
Connect to WordPress sites with automatic endpoint discovery
E-commerce integration with product and order management
For this guide, we'll use WordPress as an example. The process is similar for other integrations.
https://your-wordpress-site.commy-wordpress-serverApplication Passwordget_posts - Retrieve WordPress postscreate_post - Create new postsupdate_post - Update existing postsget_users - List WordPress usersget_media - Access media libraryClick "Deploy Server" to generate and deploy your MCP server. The process includes:
Your MCP server is now running and ready to use. Here are your connection details:
https://api.mcpforest.dev/servers/your-server-idsrv_abc123def456Use the built-in test interface to verify your server is working correctly:
{
"tool": "get_posts",
"arguments": {
"limit": 5,
"status": "published"
}
}Add your MCP server to Claude Desktop configuration:
{
"mcpServers": {
"wordpress": {
"command": "node",
"args": ["path/to/server.js"],
"env": {
"API_URL": "https://api.mcpforest.dev/servers/your-server-id"
}
}
}
}Enable MCP server in Cursor IDE settings:
{
"mcp": {
"servers": {
"wordpress": {
"url": "https://api.mcpforest.dev/servers/your-server-id"
}
}
}
}Congratulations! Your MCP server is now running and connected to AI tools. Here's what you can do next: