Just create a file within ~/.ssh/ called config and that holds a few lines like these:
Host server
User username
Hostname server.somewhere.com
'username' being your account name on the server, and in the Host line you can put whatever name you find convenient. If there are more servers, just add more groups.
Then you can type: ssh server to connect, and scp file.c server:~/folder/ to copy files to the server.
Better yet, install some apps that take care of ssh identities, ssh-agent and ssh-add. Then you won't need to type passwords.