MCP server for using the AdsPower LocalAPI
What is AdsPower local api mcp typescript
AdsPower LocalAPI MCP Server
A Model Context Protocol server that AdsPower browser LocalAPI. This server enables LLMs to interact with start browser, create browser, update browser fingerprint config ...
Usage with Claude Desktop
Talk to LLMs to create browser: Create an Android UA browser using Chrome 134
Talk to LLMs to create browser: Help me with random UA, random fingerprint, random cookie generation, create 3 browsers, use 134 cores, and open them
How to use?
Requirements
-
Node version 18 or greater
Installation
To use with Claude Desktop, add the server config:
On macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
On Windows: %APPDATA%/Claude/claude_desktop_config.json
MacOS / Linux
{
"mcpServers": {
"adspower-local-api": {
"command": "npx",
"args": ["-y", "local-api-mcp-typescript"]
}
}
}
Windows
{
"mcpServers": {
"adspower-local-api": {
"command": "cmd",
"args": ["/c", "npx", "-y", "local-api-mcp-typescript"]
}
}
}
or use in Cursor
Development
# git clone
git clone https://github.com/AdsPower/local-api-mcp-typescript.git
# install package
cd local-api-mcp-typescript && npx pnpm i
# build
npm run build
# Add the server to your claude_desktop_config.json
"mcpServers": {
"adspower-local-api": {
"command": "node",
"args": [
"<Replace Your Project Path>/local-api-mcp-typescript/build/index.js"
]
}
}
Components
Tools
-
open_browser
- Open the browser
- Inputs:
serialNumber
(string, optional): The serial number of the browser to openuserId
(string, optional): The browser id of the browser to open
-
close_browser
- Close the browser
- Input:
userId
(string): The browser id of the browser to stop
-
create_browser
- Create a browser
- Inputs:
groupId
(string): The group id for the browserdomainName
(string, optional): The domain nameopenUrls
(string[], optional): URLs to opencookie
(string, optional): Browser cookieusername
(string, optional): Usernamepassword
(string, optional): Passwordsystem
(string, optional): System typename
(string, optional): Browser namecountry
(string, optional): CountrysysAppCateId
(string, optional): System application category idstorageStrategy
(number, optional): Storage strategyuserProxyConfig
(object): Proxy configurationfingerprintConfig
(object, optional): Browser fingerprint configuration
-
update_browser
- Update the browser
- Inputs: Same as create_browser, plus:
userId
(string): The user id of the browser to update
-
delete_browser
- Delete the browser
- Input:
userIds
(string[]): The user ids of the browsers to delete
-
get_browser_list
- Get the list of browsers
- Inputs:
groupId
(string, optional): The group id of the browsersize
(number, optional): The size of the pageid
(string, optional): The id of the browserserialNumber
(string, optional): The serial number of the browsersort
(enum, optional): Sort field ('serial_number' | 'last_open_time' | 'created_time')order
(enum, optional): Sort order ('asc' | 'desc')
-
get-opened_browser
- Get the list of opened browsers
- No inputs required
-
move_browser
- Move browsers to a group
- Inputs:
groupId
(string): The target group iduserIds
(string[]): The browser ids to move
-
create_group
- Create a browser group
- Inputs:
groupName
(string): The name of the group to createremark
(string, optional): The remark of the group
-
update_group
- Update the browser group
- Inputs:
groupId
(string): The id of the group to updategroupName
(string): The new name of the groupremark
(string | null, optional): The new remark of the group, set null to clear
-
get_group_list
- Get the list of groups
- Inputs:
name
(string, optional): The name of the groupsize
(number, optional): The size of the page
-
get-application_list
- Get the list of applications
- Input:
size
(number, optional): The size of the page
Advanced Configuration Types
UserProxyConfig
proxy_soft
(enum): The proxy soft type ('brightdata', 'brightauto', 'oxylabsauto', etc.)proxy_type
(enum, optional): Proxy type ('http', 'https', 'socks5', 'no_proxy')proxy_host
(string, optional): Proxy hostproxy_port
(string, optional): Proxy portproxy_user
(string, optional): Proxy usernameproxy_password
(string, optional): Proxy passwordproxy_url
(string, optional): Proxy URLglobal_config
(enum, optional): Global config ('0' | '1')
FingerprintConfig
automatic_timezone
(enum, optional): Automatic timezone ('0' | '1')timezone
(string, optional): Timezonelanguage
(string[], optional): Languagesflash
(string, optional): Flash versionfonts
(string[], optional): Font listwebrtc
(enum, optional): WebRTC setting ('disabled' | 'forward' | 'proxy' | 'local')browser_kernel_config
(object, optional):version
(string, optional): Browser versiontype
(enum, optional): Browser type ('chrome' | 'firefox')
random_ua
(object, optional):ua_version
(string[], optional): User agent versionsua_system_version
(enum[], optional): System versions
tls_switch
(enum, optional): TLS switch ('0' | '1')tls
(string, optional): TLS configuration
Leave a Comment
Frequently Asked Questions
What is MCP?
MCP (Model Context Protocol) is an open protocol that standardizes how applications provide context to LLMs. Think of MCP like a USB-C port for AI applications, providing a standardized way to connect AI models to different data sources and tools.
What are MCP Servers?
MCP Servers are lightweight programs that expose specific capabilities through the standardized Model Context Protocol. They act as bridges between LLMs like Claude and various data sources or services, allowing secure access to files, databases, APIs, and other resources.
How do MCP Servers work?
MCP Servers follow a client-server architecture where a host application (like Claude Desktop) connects to multiple servers. Each server provides specific functionality through standardized endpoints and protocols, enabling Claude to access data and perform actions through the standardized protocol.
Are MCP Servers secure?
Yes, MCP Servers are designed with security in mind. They run locally with explicit configuration and permissions, require user approval for actions, and include built-in security features to prevent unauthorized access and ensure data privacy.
Related MCP Servers
Brave Search MCP
Integrate Brave Search capabilities into Claude through MCP. Enables real-time web searches with privacy-focused results and comprehensive web coverage.
chrisdoc hevy mcp
sylphlab pdf reader mcp
An MCP server built with Node.js/TypeScript that allows AI agents to securely read PDF files (local or URL) and extract text, metadata, or page counts. Uses pdf-parse.
aashari mcp server atlassian bitbucket
Node.js/TypeScript MCP server for Atlassian Bitbucket. Enables AI systems (LLMs) to interact with workspaces, repositories, and pull requests via tools (list, get, comment, search). Connects AI directly to version control workflows through the standard MCP interface.
aashari mcp server atlassian confluence
Node.js/TypeScript MCP server for Atlassian Confluence. Provides tools enabling AI systems (LLMs) to list/get spaces & pages (content formatted as Markdown) and search via CQL. Connects AI seamlessly to Confluence knowledge bases using the standard MCP interface.
prisma prisma
Next-generation ORM for Node.js & TypeScript | PostgreSQL, MySQL, MariaDB, SQL Server, SQLite, MongoDB and CockroachDB
Zzzccs123 mcp sentry
mcp sentry for typescript sdk
zhuzhoulin dify mcp server
zhongmingyuan mcp my mac
zhixiaoqiang desktop image manager mcp
MCP 服务器,用于管理桌面图片、查看详情、压缩、移动等(完全让Trae实现)
Submit Your MCP Server
Share your MCP server with the community
Submit Now