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_browseropen_browser_by_browser_idgoogle_searchgoogle_search_by_browser_idnavigate_to_urlnavigate_to_url_by_browser_idclick_link_with_textclick_link_with_text_by_browser_idtake_screenshottake_screenshot_by_browser_idget_page_titleget_page_title_by_browser_idinput_textinput_text_by_browser_idextract_page_textextract_page_text_by_browser_idget_cookiesget_cookies_by_browser_idopen_new_tabopen_new_tab_by_browser_idopen_new_tab_with_urlopen_new_tab_with_url_by_browser_idclose_current_tabclose_current_tab_by_browser_idswitch_to_tabswitch_to_tab_by_browser_idget_tab_listget_tab_list_by_browser_idclose_all_tabs_except_currentclose_all_tabs_except_current_by_browser_idclose_browserclose_browser_by_browser_idclose_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"
]
}
}
}