loading…
Search for a command to run...
loading…
A read-only MCP server generated by FirstCall that looks up public GitHub user profiles by username. It demonstrates FirstCall-generated MCP artifacts with inpu
A read-only MCP server generated by FirstCall that looks up public GitHub user profiles by username. It demonstrates FirstCall-generated MCP artifacts with inputSchema, outputSchema, structuredContent, and tool annotations.
A read-only MCP server generated from a verified FirstCall recipe. It exposes one tool, github_user_lookup, which looks up public user records by username using the GitHub public API.
This repository is built from FirstCall, a local-first verified API recipe workbench for turning request sources into redacted agent-ready API tool packages.
inputSchema, outputSchema, structuredContent, and MCP tool annotations.https://api.github.com/users/${username}.github_user_lookupGEThttps://api.github.com/users/${username}usernamenpm install
npm run build
npm start
For clients that can run a GitHub-hosted npm package through npx:
{
"mcpServers": {
"firstcall-api-lookup": {
"command": "npx",
"args": ["-y", "github:rad1092/firstcall-api-lookup-mcp"]
}
}
}
For a local checkout:
{
"mcpServers": {
"firstcall-api-lookup": {
"command": "node",
"args": ["/absolute/path/to/firstcall-api-lookup-mcp/dist/server.js"]
}
}
}
Build the local checkout before using the second config:
npm install
npm run build
docker build -t firstcall-api-lookup-mcp .
docker run --rm -i firstcall-api-lookup-mcp
This server is generated from a verified FirstCall recipe. The generated MCP server is an artifact, not the source of truth for FirstCall package import. FirstCall keeps verification, packaging, validation, inspection, and local re-verification as explicit steps.
from
Выполни в терминале:
claude mcp add firstcall-demo-mcp-server -- npx