tm-finder-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@tm-finder-mcpsearch for trademark 'Nike'"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
TM Finder MCP server
Stateless Streamable HTTP MCP adapter for the TM Finder Public API.
Configuration
API_KEY is the server's only environment variable. It is optional because clients can instead provide their own key in the Authorization or X-API-Key header. All non-secret server settings are defined in src/main.ts under MCP_CONFIG.
For multi-user deployments, do not set a shared API_KEY. Have each MCP client send its TM Finder API key in the Authorization: Bearer <api-key> header or the X-API-Key: <api-key> fallback header when calling /mcp. The credential is forwarded to the public API and is never included in tool arguments or results.
For a single-user deployment, set API_KEY through the shell or secret manager. The blank entries in the committed environment files are intentionally treated as unset; do not commit the real key.
Codex configuration
Codex's Bearer token env var setting expects the name of an environment variable, not the token itself. For example, start Codex from a shell where the credential is available:
export TM_FINDER_API_KEY='your-tm-finder-api-key'Then configure the Streamable HTTP server with:
URL:
https://tm-finder-mcp.vercel.app/mcpBearer token env var:
TM_FINDER_API_KEY
Codex will read TM_FINDER_API_KEY and send its value as
Authorization: Bearer <value>. Restart the Codex app or IDE extension after
saving the MCP configuration. Do not paste the token itself into Bearer token
env var; doing so makes Codex look for an environment variable whose name is
the token, so no authorization header is sent.
The equivalent config.toml entry is:
[mcp_servers.tm_finder]
url = "https://tm-finder-mcp.vercel.app/mcp"
bearer_token_env_var = "TM_FINDER_API_KEY"If Codex does not forward Authorization, use the MCP settings' static
Headers section instead: X-API-Key as the key and the TM Finder API key as
the value (without a Bearer prefix). The MCP server accepts this fallback and
forwards the credential to the public API as a Bearer token. This stores the
secret in Codex configuration, so the environment-variable method is preferred.
Related MCP server: ls-apis-mcp
Endpoints
POST /mcp— stateless MCP Streamable HTTP endpointGET /health— container health/liveness endpoint
The server exposes search_trademarks. Each call costs one TM Finder API credit. An idempotency key is generated automatically; clients retrying a logical operation should pass the original idempotencyKey tool argument to avoid a second debit.
Run
# Start locally with automatic restart when source files change
npm run local
# Compile TypeScript, then run the production build
npm run build
npm startThe committed environment files contain only a blank API-key placeholder. Inject the real key through the hosting platform's secret manager; never commit it.
Terminate with SIGTERM or SIGINT for graceful shutdown. Put the service behind TLS in production and keep /mcp request bodies within the configured 256 KB limit.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Flicense-qualityDmaintenanceUSPTO Trademark Watcher MCP server enabling trademark search, watch, and alert management from within Claude or other MCP clients.
- AlicenseAqualityAmaintenanceMCP server for searching and discovering 4,000+ public APIs3MIT
- Alicense-qualityCmaintenanceMCP server that wraps the official JPO patent information API to enable retrieval of patent, trademark, and design records for known case numbers.MIT
- AlicenseAqualityBmaintenanceMCP server that enables searching Korean patents, trademarks, and designs via KIPRIS Plus open APIs. Supports keyword, advanced, applicant, and rightholder searches with detailed bibliographic lookup.751MIT
Related MCP Connectors
MCP server for Tomba email finder, verification, and contact enrichment API
MCP server providing access to the Scorecard API to evaluate and optimize LLM systems.
MCP server for AI access to Swagger by SmartBear.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/b2tm/tm-finder-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server