Skip to main content
Glama
adamanz

Apollo.io MCP Server

by adamanz

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
NameRequiredDescriptionDefault
organization_idYesApollo.io organization ID

Implementation Reference

  • 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; } }
  • 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'] } },
  • 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']

Latest Blog Posts

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/adamanz/apollo-io-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server