organization_job_postings
Find job postings for a specific organization using Apollo.io organization ID to identify current hiring opportunities and open positions.
Instructions
Use the Organization Job Postings endpoint to find job postings for a specific organization
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| organization_id | Yes | Apollo.io organization ID |
Implementation Reference
- src/apollo-client.ts:183-198 (handler)Core handler function that executes the API call to Apollo.io to retrieve job postings for the specified organization ID.async organizationJobPostings(organizationId: string): Promise<any> { try { const url = `${this.baseUrl}/organizations/${organizationId}/job_postings`; const response = await this.axiosInstance.get(url); if (response.status === 200) { return response.data; } else { console.error(`Error: ${response.status} - ${response.statusText}`); return null; } } catch (error: any) { console.error(`Error: ${error.response?.status} - ${error.response?.statusText || error.message}`); return null; } }
- src/index.ts:272-279 (handler)MCP tool call handler that delegates to the ApolloClient's organizationJobPostings method and formats the response.case 'organization_job_postings': { const result = await this.apollo.organizationJobPostings(args.organization_id as string); return { content: [{ type: 'text', text: JSON.stringify(result, null, 2) }] };
- src/index.ts:172-185 (registration)Registration of the tool in the MCP server's list of tools, including name, description, and input schema definition.{ name: 'organization_job_postings', description: 'Use the Organization Job Postings endpoint to find job postings for a specific organization', inputSchema: { type: 'object', properties: { organization_id: { type: 'string', description: 'Apollo.io organization ID' } }, required: ['organization_id'] } },
- src/index.ts:175-183 (schema)Input schema definition for the organization_job_postings tool, specifying the required organization_id parameter.inputSchema: { type: 'object', properties: { organization_id: { type: 'string', description: 'Apollo.io organization ID' } }, required: ['organization_id']