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:
- Name — a short, descriptive name (e.g.
github-tools) - Description — optional, but helpful for teams
- Security mode — start with Public for now; you can change it later

Step 2 — Write a tool
Scroll down to Tools
On the server detail page, scroll down to the Tools section and click Create New 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).
Enter a parameter value
In the repo field, enter a real repository name — e.g.
anthropics/anthropic-sdk-python.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.

