qoxogus/spring-ai-chrome-mcp-server
If you are the rightful owner of spring-ai-chrome-mcp-server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.
Spring AI Chrome MCP Server is a protocol server designed to interact with the Chrome browser.
Spring AI Chrome MCP Server
ํฌ๋กฌ ๋ธ๋ผ์ฐ์ ์ ์ํธ์์ฉ ํ ์ ์๋ MCP ์๋ฒ์ ๋๋ค.
Running Example
- ๋ธ๋ผ์ฐ์ ์ด์ด์ค
- MCP ๊ฒ์ํด์ค
- ๋ธ๋ก๊ทธ ํ๋ ๋ค์ด๊ฐ์ ๋ด์ฉ ์์ฝํด์ค
- ์ ํญ ์ด๊ณ , ๊ตฌ๊ธ ์ ์ํด์ค
- ์ค๋์ ํ์จ ๊ฒ์ํด์ค
- ๋ธ๋ผ์ฐ์ ๋ซ์์ค
Tools
๊ฐ๊ฐ์ ๋ธ๋ผ์ฐ์ ๋ ID๋ก ๊ด๋ฆฌ๋ฉ๋๋ค. (์ฌ๋ฌ๊ฐ์ ๋ธ๋ผ์ฐ์ ๋ฅผ ๋์ธ ์ ์์ต๋๋ค, ์ธํ ํ์ง ์์ ์ default)
๊ฐ๊ฐ์ Tab์ ์ธ๋ฑ์ค๋ก ๊ด๋ฆฌ๋ฉ๋๋ค.ex1) ๋ธ๋ผ์ฐ์ ์ด์ด์ค(default google page) -> XX ๊ฒ์ํด์ค
ex2) ๋ธ๋ผ์ฐ์ ID 1๋ก ์ด์ด์ค -> ์ ํญ ์ธ๋ฑ์ค 2๋ก ์ด๊ณ ๊ตฌ๊ธ ์ ์ํด์ค -> 2 ์ธ๋ฑ์ค ํญ์์ XX ๊ฒ์ํด์ค
open_browser
open_browser_by_browser_id
google_search
google_search_by_browser_id
navigate_to_url
navigate_to_url_by_browser_id
click_link_with_text
click_link_with_text_by_browser_id
take_screenshot
take_screenshot_by_browser_id
get_page_title
get_page_title_by_browser_id
input_text
input_text_by_browser_id
extract_page_text
extract_page_text_by_browser_id
get_cookies
get_cookies_by_browser_id
open_new_tab
open_new_tab_by_browser_id
open_new_tab_with_url
open_new_tab_with_url_by_browser_id
close_current_tab
close_current_tab_by_browser_id
switch_to_tab
switch_to_tab_by_browser_id
get_tab_list
get_tab_list_by_browser_id
close_all_tabs_except_current
close_all_tabs_except_current_by_browser_id
close_browser
close_browser_by_browser_id
close_all_browsers
claude_desktop_config
template
{
"mcpServers": {
"spring-ai-chrome-mcp-server": {
"command": "{JAVA_PATH}",
"args": [
"-Dspring.ai.mcp.server.stdio=true",
"-jar",
"{JAR_PATH}"
]
}
}
}
example
{
"mcpServers": {
"spring-ai-chrome-mcp-server": {
"command": "/Users/baetaehyeon/Library/Java/JavaVirtualMachines/corretto-21.0.5-1/Contents/Home/bin/java",
"args": [
"-Dspring.ai.mcp.server.stdio=true",
"-jar",
"/Users/baetaehyeon/dev/chrome-mcp-server/build/libs/chrome-mcp-server-0.0.1.jar"
]
}
}
}