Prerequisites
- An MCPCore account — sign up free, no credit card required
- That’s it. No local installs needed.
Step 1 — Create a server
Open the dashboard
Go to app.mcpcore.io and navigate to My Servers.
Click New Server
Click the New Server button in the top-right corner.Fill in:
- Code — a unique machine identifier (e.g.
github_tools) - Title — a short, descriptive name (e.g.
GitHub Tools) - Subdomain — your server’s URL prefix (e.g.
github-tools) - Security mode — start with Public for now; you can change it later
Step 2 — Write a tool
Name your tool
Give your tool a name. Tool names become part of the MCP schema the AI sees — use lowercase snake_case (e.g.
fetch_repo_stats).Add a parameter
Click Add parameter and add:
- Name:
repo - Type:
string - Description:
GitHub repository in owner/repo format - Required: yes
Step 3 — Test it
Open the Run panel
With the tool selected, click the Run tab (or the play button in the editor toolbar).
Step 4 — Connect to an AI client
Copy the Endpoint URL from the server detail page and add it to your AI client:Claude Desktop
Add MCPCore to your
claude_desktop_config.json.Cursor
Add MCPCore via Cursor’s MCP settings panel.
Windsurf
Configure MCPCore in Windsurf’s MCP config file.
Any MCP client
Any client that supports the MCP spec works out of the box.
What’s next?
Add secrets
Store API keys and reference them as
env.MY_KEY — never hardcode credentials.Change security mode
Lock your server behind API Key or OAuth 2.0 before going to production.
Query a database
Use
sdk.db() to connect to PostgreSQL, MySQL, or SQL Server.Monitor traffic
See every request your server receives and how fast it responded.