get_listings
Get job listings, optionally filtered by identity or tag.
Parameters:
identity
(optional) - Filter listings by DID or handletag
(optional) - Filter listings by tag
Example: "Show me all jobs tagged with 'rust'"
Connect AI agents to at://work
The Model Context Protocol (MCP) is an open standard that enables AI assistants like Claude to securely connect to external data sources and tools. MCP allows AI agents to access real-time information and perform actions on your behalf through a standardized interface.
at://work provides an MCP remote server that gives AI agents access to job listings data. This means you can ask your AI assistant questions like "What Rust jobs are available?" or "Show me the latest design positions" and get real-time answers directly from our job board.
A remote MCP server is an HTTP endpoint that implements the MCP protocol, allowing AI agents to connect over the internet. Unlike local MCP servers that run on your machine, remote servers are hosted services that can be accessed from anywhere.
The at://work MCP server is hosted at:
https://atwork.place/mcp
This endpoint provides tools for searching and retrieving job listings using the MCP protocol.
The at://work MCP server provides the following tools:
Get job listings, optionally filtered by identity or tag.
Parameters:
identity
(optional) - Filter listings by DID or handletag
(optional) - Filter listings by tagExample: "Show me all jobs tagged with 'rust'"
Get a single job listing by AT-URI or by identity and record key.
Parameters:
uri
(optional) - AT-URI of the listingidentity
(optional) - DID or handle of the listing ownerrkey
(optional) - Record key when used with identityExample: "Get the job listing at at://did:plc:abc123/place.atwork.listing/xyz789"
Search job listings using full-text search.
Parameters:
query
(required) - Search query stringExample: "Search for senior software engineer positions"
To configure the at://work MCP server with Claude Desktop or other MCP-compatible clients, add the following to your MCP configuration file:
Edit your Claude Desktop configuration file:
~/Library/Application Support/Claude/claude_desktop_config.json
%APPDATA%\Claude\claude_desktop_config.json
Add the following to the mcpServers
section:
{
"mcpServers": {
"atwork": {
"url": "https://atwork.place/mcp"
}
}
}
After saving the configuration, restart Claude Desktop to activate the connection.
Once configured, you can ask Claude questions like:
Claude will use the MCP tools to query the at://work job board and provide you with current, real-time information about available positions.
The at://work MCP server provides read-only access to publicly available job listings. No authentication is required, and no personal data is collected or transmitted. The server implements the MCP 2025-03-26 protocol specification for secure, standardized communication.
For developers and advanced users:
POST https://atwork.place/mcp
Full protocol documentation is available at the Model Context Protocol website.