As Anony-Mousse said, your problem seems to be "related" to the set cover problem. Using the same notation and terminology as in the Wikipedia page, the universe U is your set of points while the collection S contains |U| sets, one such set for each point u in U, containing all the points that are inside the disk centered at u of radius equal to your maximum distance. So your problem is to find the minimum number of sets in S (equivalent to finding the points that should be the centers of the clusters) such that the union of these sets is U.
Now, what I did above is reducing your problem to the set cover problem. This is the wrong direction we would like to perform the reduction in order to show that your problem is probably "difficult". To accomplish this, one would need to show that every instance of the set cover problem can be rephrased as an instance of your problem.
However, you said you have a rather small set of points. You could just define the collection S as above and then brute force it (i.e. try all possible sub-collections of S and take the one with the minimum number of sets in it, resulting in exponential complexity in the size of |S|). Regarding this approach, you would actually want to have a rather small number of sets in S, the number of points is not that important.