Taixin MCP Server Guide
How to connect Cursor, VS Code, Claude Code, Codex, and other MCP clients to Taixin public documentation search, including OAuth, verification, limits, and security boundaries.
Why use Taixin MCP
Taixin MCP connects supported AI tools to public product, solution, download, support, and technical-document sources on the Taixin website. It helps engineers retrieve traceable official context without leaving their coding environment.
AI-generated answers can still be inaccurate. Confirm critical specifications, certifications, prices, lead times, and project commitments with the corresponding official document or the Taixin team.
What the Taixin MCP server is
MCP stands for Model Context Protocol. The Taixin server exposes public website search capabilities as MCP tools. It does not provide access to admin APIs, unpublished files, internal systems, credentials, or private customer information.
Server URL
Use the following remote Streamable HTTP endpoint:
https://taixin-semi.com/api/mcp
The first connection opens the Taixin OAuth sign-in and authorization flow. Complete authorization before calling the tools.
Available tools
search_taixin_sources: search public Taixin website sources for a concrete question.get_taixin_product_specs: retrieve public specification sources for a Taixin model.find_taixin_downloads: find public datasheets, manuals, SDKs, downloads, and technical documents.compare_taixin_products: retrieve public sources for two concrete models to support comparison.
MCP server vs. the website AI assistant
The website AI assistant is used directly in the browser. The MCP server is added to an external client such as Cursor, VS Code, Claude Code, or Codex so the client can retrieve Taixin sources during a working session. Both use public website content and the same security boundaries.
Add to Cursor
{
"mcpServers": {
"taixin-documentation": {
"url": "https://taixin-semi.com/api/mcp"
}
}
}
Add to VS Code
{
"mcp": {
"servers": {
"taixin-documentation": {
"type": "http",
"url": "https://taixin-semi.com/api/mcp"
}
}
}
}
Add to Claude Code
claude mcp add taixin-documentation --url "https://taixin-semi.com/api/mcp"
Add to OpenAI Codex
codex mcp add taixin-documentation --url "https://taixin-semi.com/api/mcp"
Verify the connection
- Add the server URL and complete the OAuth authorization flow.
- Confirm that
tools/listreturns the four Taixin tools. - Call
get_taixin_product_specswith modelTXW8301and confirm that the response cites Taixin sources. - Ask an unrelated generic question and confirm that the tool returns an out-of-scope result without unrelated sources.
Limits
The service only searches published public sources. Content that has not been published or indexed cannot be returned. Requests are also subject to rate limits and abuse protection.
Security and permission boundary
The MCP server does not expose passwords, API keys, admin data, unpublished documents, private customer data, prices, inventory, delivery promises, or internal engineering conclusions. OAuth authorization does not expand the public-content scope.
Troubleshooting
The OAuth page does not open
Check that the client supports remote HTTP MCP servers and OAuth, then remove and add the server again. Corporate proxies or firewalls must allow access to https://taixin-semi.com/api/mcp.
The AI tool does not call Taixin MCP
Confirm that the server is enabled for the current session and that tool use is allowed. You can explicitly ask the client to search official Taixin sources through MCP.
No sources are returned
Include a concrete Taixin model, document type, parameter, or application context. The requested source may not yet be published or indexed.