conservice-credlookup
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., "@conservice-credlookupget credentials for MunicipalOnlinePayments.ForneyTX"
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.
conservice-credlookup MCP
A stdio MCP server (TypeScript/Node) that resolves a template's logins and returns their plaintext credentials to the calling agent — most often so the agent can fill a login form via the Playwright MCP.
⚠️ This is NOT a credBroker
This server is the deliberate inverse of conservice-credbroker-mcp (v1), conservice-credbroker-mcp-v2,
and credBroker-v3. Those brokers were built to keep the credential value out of the agent's
context: they own a browser and fill the login form internally, returning only status / a CDP
endpoint. This server intentionally returns the raw credential values to the agent.
It exists in preparation for relaxing the credential-obfuscation requirement. Use the brokers when you must keep credentials out of the LLM context; use this when the agent is allowed to handle them directly. Don't confuse the two.
Related MCP server: auth-vault
What it does
get_resolution_sql(template_name)→ returns the canonical SQL that maps a template name to its top-NURLTemplateItemGroupIDs (ordered byPriorityRank). This server does not run SQL.You run that SQL via the
conservice-sqlserverMCP to get the group IDs.get_credentials(group_ids, template_name?)→ calls the Provider Credentials Service (PCS) for each ID and returns the plaintext credential rows ({fieldName, value}, authoritative order:credentials[0]= credential 1, etc.).You fill those values into the login form via the Playwright MCP.
It is DB-free (group-id resolution is the caller's job, same stance as credbroker v2 §3.4), owns no browser, solves no captcha, and holds no session state.
Tools
Tool | Input | Output |
|
|
|
|
|
|
| — |
|
Configuration (env)
Var | Default | Purpose |
| required | PCS base URL, e.g. |
|
| Windows Credential Manager target for Basic auth |
| — | env override for the identity (CI/Linux) |
| — | JSON |
On Windows the Basic-auth identity is read from the Generic credential named ApplicationUser
(same as the brokers and the Harvest CredentialProvider) — no secret in the config.
Build & run
npm install
npm run build # tsc --noEmit + esbuild -> dist/index.js (the gate)
npm start # node dist/index.jsRegistration (user level)
Add to ~/.claude.json under mcpServers:
"conservice-credlookup": {
"type": "stdio",
"command": "node",
"args": ["C:\\Users\\mbrotherson\\repos\\conservice-credlookup-mcp\\dist\\index.js"],
"env": { "CREDLOOKUP_PCS_URL": "https://providercredentials.conservice.com/api/v1" }
}MCP processes don't hot-reload — restart the Claude Code session to pick up changes.
End-to-end workflow
get_resolution_sql("MunicipalOnlinePayments.ForneyTX")
→ conservice-sqlserver.execute_query(<sql>) → [groupId, ...]
→ get_credentials(group_ids=[...]) → plaintext {fieldName, value} rows
→ Playwright MCP fills the login formThis 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.
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/mtbrotherson/conservice-credlookup-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server