gemini-mcp-server
Gemini MCP Server is a multi-context processing server using the Gemini API for analyzing webpages.
The Gemini MCP Server is designed to facilitate the analysis of webpages by capturing screenshots and extracting metadata. It provides a robust API that allows users to process webpages, retrieve screenshots, and access associated data. This server is particularly useful for applications that require visual analysis and metadata tagging of web content. By leveraging the Gemini API, the server can efficiently handle multiple contexts and deliver detailed insights into webpage structures and content.
Features
- Screenshot and analyze webpages
- Tag and metadata for screenshots
- Retrieve screenshots and associated data via API
Usage with Different Platforms
nodejs
javascript
const axios = require('axios');
// Process a webpage
axios.post('http://localhost:3000/process', {
url: 'https://example.com',
prompt: 'Describe what you see on this webpage'
})
.then(response => {
console.log(response.data);
})
.catch(error => {
console.error(error);
});
// Get a screenshot by ID
axios.get('http://localhost:3000/screenshots/123')
.then(response => {
console.log(response.data);
})
.catch(error => {
console.error(error);
});
// Get screenshots with filters
axios.get('http://localhost:3000/screenshots?tag=initial_load')
.then(response => {
console.log(response.data);
})
.catch(error => {
console.error(error);
});
Related MCP Servers
View all browser_automation servers →Fetch
by modelcontextprotocol
A Model Context Protocol server that provides web content fetching capabilities, enabling LLMs to retrieve and process content from web pages.
markdownify-mcp
by zcaceres
Markdownify is a Model Context Protocol (MCP) server that converts various file types and web content to Markdown format.
mcp-playwright
by executeautomation
A Model Context Protocol server that provides browser automation capabilities using Playwright.
playwright-mcp
by microsoft
Playwright MCP is a Model Context Protocol server that provides browser automation capabilities using Playwright, enabling LLMs to interact with web pages through structured accessibility snapshots.
mcp-server-weibo
by Selenium39
The Weibo MCP Server (TypeScript Version) is designed for scraping Weibo user information, feeds, and search functionality using the Model Context Protocol.
web-eval-agent
by Operative-Sh
operative.sh's MCP Server is a tool for autonomous debugging of web applications directly from your code editor.
browser-tools-mcp
by AgentDeskAI
BrowserTools MCP is a browser monitoring and interaction tool that enhances AI applications by capturing and analyzing browser data through a Chrome extension.