youtube-v31
3.9
The Youtube-v31 MCP Server provides seamless access to YouTube API v3 functionalities without requiring an API key.
The Youtube-v31 MCP Server is a high-performance service designed to facilitate access to YouTube API v3 functionalities. It acts as an intermediary, allowing users to leverage YouTube's powerful API features directly through the service with minimal setup. The server boasts a popularity rating of 9.9/10, a service level of 100%, and a latency of 500ms, with full test coverage. Subscription plans range from a free BASIC plan to a MEGA plan at $300 per month, catering to various user needs. The server simplifies integration by returning corresponding responses for parameters specified in the YouTube API v3 documentation.
Features
- Captions List: Retrieve a list of caption tracks associated with a specific video.
- Suggested Videos: Obtain similar videos to a specified video.
- Search: Perform searches on YouTube to find videos.
- Video Comments: Access comments for a specific YouTube video.
- Channel Details: Retrieve details about a specific YouTube channel.
Usage with Different Platforms
nodejs
javascript
const axios = require('axios');
axios.get('https://youtube-v31-mcp-server/api/videos', {
params: {
part: 'snippet',
id: 'VIDEO_ID'
}
})
.then(response => {
console.log(response.data);
})
.catch(error => {
console.error('Error fetching video details:', error);
});
python
python
import requests
response = requests.get('https://youtube-v31-mcp-server/api/videos', params={
'part': 'snippet',
'id': 'VIDEO_ID'
})
if response.status_code == 200:
print(response.json())
else:
print('Error fetching video details:', response.status_code)